19 lines
398 B
C#
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; }
|
|
|
|
}
|
|
}
|