PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryDataModels/Models/IClientModel.cs
2024-05-09 18:52:26 +04:00

10 lines
197 B
C#

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