19 lines
467 B
C#
19 lines
467 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class PastHistoryModel
|
|
{
|
|
public int id { get; set; }
|
|
public int inquiry_id { get; set; }
|
|
public String disease { get; set; }
|
|
public String diagnose_date { get; set; }
|
|
public String util { get; set; }
|
|
public String treatment { get; set; }
|
|
public String outcome { get; set; }
|
|
}
|
|
}
|