Update nach Anpassung

This commit is contained in:
2022-02-08 07:43:47 +01:00
parent 7e79695c18
commit adde479570
84 changed files with 196 additions and 15 deletions

View File

@@ -0,0 +1,23 @@
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()
{
}
}
}