using SQLite; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LSFE.MobApp.Entities.Planning { [Table("MRPlanDetails")] public class MRPlanDetail : BaseEntity { public string? MRPlanDetailId { get; set; } public int MRPlanHeaderId { get; set; } public byte MaxVisit { get; set; } public int DoctorId { get; set; } public DateTime PlanDate { get; set; } public int TerritoryId { get; set; } public int DivisionId { get; set; } } }