PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopContracts/BindingModels/ClientBindingModel.cs

16 lines
366 B
C#
Raw Normal View History

2024-04-09 17:02:29 +04:00
using GiftShopDataModels.Models;
namespace GiftShopContracts.BindingModels
{
public class ClientBindingModel : IClientModel
{
public int Id { get; set; }
public string ClientFIO { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
}
}