PIbd23_Ivanova_Yakobchuk_Co.../LawCompany/LawCompanyContracts/BindingModels/ClientBindingModel.cs

13 lines
325 B
C#
Raw Normal View History

2024-05-01 00:49:33 +04:00
using LawCompanyDataModels.Models;
namespace LawCompanyContracts.BindingModels
{
public class ClientBindingModel : IClientModel
{
public int Id { get; set; }
public string FIO { get; set; } = string.Empty;
public string Phone { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
}
}