46 lines
1.2 KiB
C#
46 lines
1.2 KiB
C#
namespace LaaProduction
|
|
{
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
[ClassInterface(ClassInterfaceType.AutoDual)]
|
|
public class Equipment
|
|
{
|
|
public int PruefmittelId { get; set; }
|
|
|
|
public short SoftwareId { get; set; }
|
|
|
|
public string Pruefmittel { get; set; }
|
|
|
|
public string PruefmittelNr { get; set; }
|
|
|
|
public int Pruefintervall { get; set; } = 1;
|
|
|
|
public bool Erforderlich { get; set; } = true;
|
|
|
|
public DateTime PruefdatumIst { get; set; } = DateTime.Now;
|
|
|
|
public DateTime PruefdatumSoll { get; set; } = DateTime.Now;
|
|
|
|
public string Bemerkung { get; set; }
|
|
|
|
public string EmailFrom { get; set; }
|
|
|
|
public string EmailAn { get; set; }
|
|
|
|
public string InCcAn { get; set; }
|
|
|
|
public string Betreff { get; set; }
|
|
|
|
public string Nachricht { get; set; }
|
|
|
|
public string Meldung { get; set; }
|
|
|
|
public string Schedule { get; set; } = "14, 7, 3, 1";
|
|
|
|
public int DaysLeft { get; set; }
|
|
|
|
public bool InSchedule { get; set; }
|
|
}
|
|
}
|