10 lines
190 B
C#
10 lines
190 B
C#
namespace CarRepairShopDataModels
|
|
{
|
|
public interface IClientModel : IId
|
|
{
|
|
string ClientFIO { get; }
|
|
string Email { get; }
|
|
string Password { get; }
|
|
}
|
|
}
|