PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryDataModels/Models/IClientModel.cs

10 lines
197 B
C#
Raw Normal View History

2024-04-24 15:03:13 +04:00
namespace ConfectioneryDataModels.Models
{
public interface IClientModel : IId
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
}