SushiBarBase/SushiBar/SushiBarDataModels/Models/IClientModel.cs

10 lines
192 B
C#

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