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

11 lines
217 B
C#
Raw Normal View History

2024-04-27 19:02:25 +04:00
namespace LawFimDataModels.Models
{
2024-04-27 19:02:25 +04:00
public interface ILawyerModel: IId
{
string FIO { get; }
string Phone { get; }
string Email { get; }
2024-04-27 19:02:25 +04:00
public int GuarantorId { get; }
}
}