24 lines
358 B
C#
24 lines
358 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DPMService.Models
|
|
|
|
{
|
|
public class Service_View_Pat
|
|
{
|
|
public int ID
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string Pat { get; set; } = "";
|
|
|
|
public Service_View_Pat()
|
|
{
|
|
}
|
|
}
|
|
}
|