PIbd-23-Yunusov-N.N.-CarRep.../CarRepairShop/CarRepairShopDataModels/IClientModel.cs

10 lines
190 B
C#
Raw Normal View History

2024-04-06 19:58:28 +04:00
namespace CarRepairShopDataModels
{
public interface IClientModel : IId
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
}