Klassen erweitert

This commit is contained in:
Husky
2020-02-21 09:50:32 +01:00
parent 5798fc6108
commit fc144554a5
18 changed files with 596 additions and 192 deletions

View File

@@ -0,0 +1,12 @@
using KanSan.Base.Interfaces;
using System;
namespace KanSan.Base.Models
{
public class SewerPoint : IDatabaseEntry
{
public int ID { get; set; }
public Guid GuidNr { get; set; }
public string Objektnummer { get; set; }
}
}