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

10 lines
185 B
C#
Raw Normal View History

2024-05-01 10:50:16 +04:00
namespace SushiBarDataModels
{
public interface IClientModel : IId
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
}