12 lines
312 B
C#
12 lines
312 B
C#
namespace LawFimDataModels.Models
|
|
{
|
|
public interface IConsultationModel: IId
|
|
{
|
|
Dictionary<int, ILawyerModel> ConsultationLawyers { get; }
|
|
double Cost { get; }
|
|
DateTime ConsultationDate { get; }
|
|
public int CaseId { get; }
|
|
public int GuarantorId { get; }
|
|
}
|
|
}
|