PIbd23_Ivanova_Yakobchuk_Co.../LawCompany/LawCompanyDataModels/Models/IClientModel.cs

11 lines
215 B
C#
Raw Normal View History

namespace LawCompanyDataModels.Models
{
public interface IClientModel : IId
{
string FIO { get; }
string Phone { get; }
string Email { get; }
public int ExecutorId { get; }
}
}