Files
csharpcode/patientman/PatientMan/Classes/Templates/clsLogInfo.cs
2025-08-02 05:20:17 +07:00

22 lines
467 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PatientMan
{
public class LogInfo
{
public string PatientID { get; set; }
public string RecordID { get; set; }
public string TableName { get; set; }
public string EventType { get; set; }
public string EventDate { get; set; }
}
public class EndTreatmentLog
{
public string log { get; set; }
}
}