11 lines
268 B
C#
11 lines
268 B
C#
|
namespace LawCompanyDataModels.Models
|
|||
|
{
|
|||
|
public interface IHearingModel : IId
|
|||
|
{
|
|||
|
Dictionary<int, ILawyerModel> HearingLawyers { get; }
|
|||
|
DateTime HearingDate { get; }
|
|||
|
string Judge { get; }
|
|||
|
public int GuarantorId { get; }
|
|||
|
}
|
|||
|
}
|