Klassen erweitert

This commit is contained in:
Husky
2020-02-21 11:37:04 +01:00
parent 842c42be58
commit f37a7c5dd4
13 changed files with 574 additions and 32 deletions

View File

@@ -0,0 +1,15 @@
using KanSan.Base.Interfaces;
using System;
namespace KanSan.Base.Models
{
public class LeitungsverzeichnisPosition : IDatabaseEntry
{
public int ID { get; set; }
public Guid GuidNr { get; set; }
public string Positionsnummer { get; set; }
public string Beschreibung { get; set; }
public string Einheit { get; set; }
}
}