PIbd-22_Gerimovich.I.M._Fur.../FurnitureAssembly/FurnitureAssemblyContracts/BindingModels/ClientBindingModel.cs

22 lines
561 B
C#
Raw Normal View History

2024-05-22 10:14:48 +04:00
using FurnitureAssemblyDataModels.Models;
using System;
2024-05-08 11:24:46 +04:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureAssemblyContracts.BindingModels
{
2024-05-22 10:14:48 +04:00
// Реализация сущности "Клиент"
2024-05-08 11:24:46 +04:00
public class ClientBindingModel : IClientModel
{
public int Id { get; set; }
2024-05-22 10:14:48 +04:00
2024-05-08 11:24:46 +04:00
public string ClientFIO { get; set; } = string.Empty;
2024-05-22 10:14:48 +04:00
2024-05-08 11:24:46 +04:00
public string Email { get; set; } = string.Empty;
2024-05-22 10:14:48 +04:00
public string Password { get; set; } = string.Empty;
2024-05-08 11:24:46 +04:00
}
}