Files
2025-08-02 05:20:17 +07:00

19 lines
398 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PatientMan.Classes.Templates
{
class clsEndDuplicates
{
public string UniqueID { get; set; }
public string PatientId { get; set; }
public DateTime EndDate { get; set; }
public string TypeId {get;set;}
public Boolean Deleted { get; set; }
}
}