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