2023-04-26 08:41:25 +04:00

10 lines
197 B
C#

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