Files
DPM2016/WebAPI/Models/Service_View_Pat.cs
2022-02-08 07:43:47 +01:00

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()
{
}
}
}