20 lines
688 B
C#
20 lines
688 B
C#
using System;
|
|
|
|
namespace KanSan.CrossCutting.DataClasses
|
|
{
|
|
public class Taetigkeiten
|
|
{
|
|
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 LeistungsverzeichnisPosition LeistungsverzeichnisPosition { get; set; }
|
|
public decimal Anzahl { get; set; }
|
|
public GueteschutzProtokoll GueteschutzProtokol { get; set; }
|
|
public string Bemerkung { get; set; }
|
|
}
|
|
}
|