PIbd-23_Sergunov_M.A._GiftShop/GiftShop/GiftShopContracts/BindingModels/ClientBindingModel.cs

16 lines
366 B
C#
Raw Normal View History

2023-05-14 11:29:13 +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;
}
}