stage5_models_and_storages_contracts_lena #2

Merged
ekallin merged 11 commits from stage5_models_and_storages_contracts_lena into stage5_models_and_storages_contracts 2024-04-27 10:36:38 +04:00
2 changed files with 2 additions and 4 deletions
Showing only changes of commit 30aeebddd2 - Show all commits

View File

@ -11,8 +11,7 @@ namespace PolyclinicContracts.BindingModels
{
public int Id { get; set; }
public string FIO { get; set; } = string.Empty;
public DateTime BirthDay { get; set; }
public string Password { get; set; } = "123";
public string RepeatPassword { get; set; } = "123";
public string Email { get; set; } = string.Empty;
}
}

View File

@ -9,8 +9,7 @@ namespace PolyclinicDataModels.Models
public interface ISuretorModel : IId
{
string FIO { get; }
DateTime BirthDay { get; }
string Password { get; }
string RepeatPassword { get; }
string Email { get; }
}
}