18 lines
276 B
C#
18 lines
276 B
C#
namespace DPMService.Models
|
|
|
|
{
|
|
public class Service_View_Pat
|
|
{
|
|
public int ID
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string Pat { get; set; } = "";
|
|
|
|
public Service_View_Pat()
|
|
{
|
|
}
|
|
}
|
|
} |