PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopDataModels/Models/IClientModel.cs

12 lines
194 B
C#
Raw Normal View History

2024-04-09 17:02:29 +04:00
namespace GiftShopDataModels.Models
{
public interface IClientModel : IId
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
}