11 lines
286 B
C#
11 lines
286 B
C#
|
namespace LawFimDataModels.Models
|
|||
|
{
|
|||
|
public interface IHearingModel: IId
|
|||
|
{
|
|||
|
Dictionary<int, ILawyerModel> HearingLawyers { get; }
|
|||
|
DateTime HearingDate { get; }
|
|||
|
string Judge { get; }
|
|||
|
public int GuarantorId { get; } // не уверена
|
|||
|
}
|
|||
|
}
|