2023-02-24 21:42:29 +04:00

11 lines
197 B
C#

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