ISEbd-21.Gordeev.I.V.SushiB.../SushiBar/SushiBarDataModels/Models/IClientModel.cs

10 lines
185 B
C#

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