2024-05-01 18:40:30 +04:00
|
|
|
|
namespace LawCompanyDataModels.Models
|
|
|
|
|
{
|
2024-05-01 21:03:58 +04:00
|
|
|
|
public interface IHearingModel : IId
|
|
|
|
|
{
|
|
|
|
|
Dictionary<int, ILawyerModel> HearingLawyers { get; }
|
|
|
|
|
DateTime HearingDate { get; }
|
|
|
|
|
string Judge { get; }
|
|
|
|
|
public int GuarantorId { get; }
|
|
|
|
|
}
|
2024-05-01 18:40:30 +04:00
|
|
|
|
}
|