2024-10-28 14:54:01 +04:00
|
|
|
|
using ClientsDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ClientsContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class ClientBindingModel : IClientModel
|
|
|
|
|
{
|
|
|
|
|
public string Fio { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Email { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public int CategoryId { get; set; }
|
|
|
|
|
|
2024-11-11 15:28:10 +04:00
|
|
|
|
public string Photo { get; set; } = string.Empty;
|
2024-10-28 14:54:01 +04:00
|
|
|
|
}
|
|
|
|
|
}
|