Files
adas-core/adas-core.Domain/Models/MongoModels/PatientCarePlan.cs
T

18 lines
579 B
C#

using adas_core.Domain.Enums;
using adas_core.Domain.Models.Masters;
using MongoDB.Bson;
namespace adas_core.Domain.Models.MongoModels;
public class PatientCarePlan
{
public ObjectId Id { get; set; }
public ObjectId PatientId { get; set; }
public ObjectId? PointOfCareId { get; set; }
public string? PatientNumber { get; set; }
public ObjectId? UserId { get; set; }
public OptionList? CarePlan { get; set; }
public string? Description { get; set; }
public DateTime? Time { get; set; }
public ActionsEnum.CrudAction? Action { get; set; }
}