PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopContracts/BindingModels/ClientBindingModel.cs
Arkadiy Radaev b8c207c772 res5
2024-04-09 17:02:29 +04:00

16 lines
366 B
C#

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;
}
}