19 lines
501 B
C#
19 lines
501 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using DataContracts.models;
|
|
|
|
namespace DataContracts.bindingModels
|
|
{
|
|
public class ClientBindingModel : IClient
|
|
{
|
|
public int Id { get; set; }
|
|
public string FIO { get; set; } = string.Empty;
|
|
public byte[] photo { get; set; }
|
|
public string email { get; set; } = string.Empty;
|
|
public string products { get; set; } = string.Empty;
|
|
}
|
|
}
|