ISEbd-21_Gavrilov_R.A._Cour.../DataModel1/IClientModel.cs
2024-04-30 23:53:53 +04:00

14 lines
317 B
C#

using DataModels.HelperInterfaces;
namespace DataModels
{
public interface IClientModel : IId
{
string Email { get; }
string FirstName { get; }
string LastName { get; }
string? MiddleName { get; }
string PhoneNumber { get; }
string Password { get; }
}
}