Files
DPM_PADM/WebAPI/Models/Service_View_Pat.cs
2022-07-27 12:02:47 +02: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()
{
}
}
}