PIbd-32_Chubykina_P.P._COP_11/COP/ClientsDataModels/Models/IClientModel.cs

17 lines
345 B
C#
Raw Normal View History

2024-10-28 14:54:01 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ClientsDataModels.Models
{
public interface IClientModel : IId
{
string Fio { get; }
string Email { get; }
public int CategoryId { get; }
public string Photo { get; }
}
}