This commit is contained in:
2024-01-23 15:41:59 +01:00
Unverified
parent 5d5a69ccf7
commit 3b2b4c9b7e
76 changed files with 4100 additions and 888 deletions

View File

@@ -25,5 +25,17 @@ namespace SecureBank.Common.Accounts
[JsonProperty("phone_number")]
[JsonPropertyName("phone_number")]
public string PhoneNumber { get; set; }
[JsonProperty("address")]
[JsonPropertyName("address")]
public string Address { get; set; }
[JsonProperty("pesel")]
[JsonPropertyName("pesel")]
public string PESEL { get; set; }
[JsonProperty("id_card_number")]
[JsonPropertyName("id_card_number")]
public string IdCardNumber { get; set; }
}
}