18 lines
396 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataContracts.models
{
public interface IClient
{
public int Id { get; }
public string FIO { get; set; }
public byte[] photo { get; set; }
public string email { get; set; }
public string products { get; set; }
}
}