2024-04-17 23:12:10 +04:00
|
|
|
|
namespace PolyclinicDataModels.Models
|
|
|
|
|
{
|
2024-04-28 12:12:39 +04:00
|
|
|
|
public interface IDiagnoseModel : IId
|
2024-04-17 23:12:10 +04:00
|
|
|
|
{
|
|
|
|
|
string Name { get; }
|
|
|
|
|
string Comment { get; }
|
2024-04-27 22:59:12 +04:00
|
|
|
|
int UserId { get; }
|
2024-05-01 10:33:00 +04:00
|
|
|
|
DateTime DateStartDiagnose { get; }
|
|
|
|
|
DateTime? DateStopDiagnose { get; }
|
2024-04-17 23:12:10 +04:00
|
|
|
|
}
|
|
|
|
|
}
|