PEPTool/AV-ToolV3/Schaltzustand.cs
2019-11-21 08:32:45 +01:00

14 lines
376 B
C#

using System;
namespace PEP_Tool
{
public class Schaltzustand
{
public System.Collections.Generic.List<string> PersNr { get; set; }
public string ZugName { get; set; }
public DateTime Start { get; set; }
public DateTime Ende { get; set; }
public string Zustand { get; set; }
public string Grund { get; set; }
}
}