PIbd-22_Fedorenko_Puchkina_.../LawFim/LawFimDataModels/Models/IClientModel.cs

11 lines
220 B
C#
Raw Normal View History

2024-04-18 20:50:44 +04:00
namespace LawFimDataModels.Models
{
public interface IClientModel : IId
{
string FIO { get; }
string Phone { get; }
string Email { get; }
2024-04-27 20:00:42 +04:00
public int ExecutorId { get; }
2024-04-18 20:50:44 +04:00
}
}