PIbd-21_Bakalskaya_E.D._Sus.../SushiBarDataModels/IClientModel.cs

10 lines
185 B
C#

namespace SushiBarDataModels
{
public interface IClientModel : IId
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
}