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,18 @@
using KanSan.Base.Interfaces;
using System;
namespace KanSan.Base.Models
{
public class Taetigkeiten : IDatabaseEntry
{
public int ID { get; set; }
public Guid GuidNr { get; set; }
public Sanierungskonzept Sanierungskonzept { get; set; }
public Fahrzeug Fahrzeug { get; set; }
public string Mitarbeiter { get; set; }
public DateTime ZeitStempel { get; set; }
public decimal Position { get; set; }
public LeitungsverzeichnisPosition LeitungsverzeichnisPosition { get; set; }
public decimal Anzahl { get; set; }
}
}