PIbd-21_Balberova_D.N._Sush.../SushiBar/SushiBarDataModels/Models/IClientModel.cs

12 lines
194 B
C#
Raw Normal View History

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