namespace LawCompanyDataModels.Models { public interface IHearingModel : IId { Dictionary HearingLawyers { get; } DateTime HearingDate { get; } string Judge { get; } public int GuarantorId { get; } } }