9c424aa40c
- nuova modalità allarmi RawList attivata - installo su SIM x sviluppare DECODER nuovo
34 lines
1012 B
C#
34 lines
1012 B
C#
namespace MP.MONO.Core.CONF
|
|
{
|
|
/// <summary>
|
|
/// Classe gestione configurazione parametri di base x allarmi di tipo RawList
|
|
/// </summary>
|
|
public class BaseAlarmRawConf
|
|
{
|
|
#region Public Properties
|
|
|
|
/// <summary>
|
|
/// Elenco allarmi configurati x la bitmap
|
|
/// </summary>
|
|
public List<string> messages { get; set; } = new List<string>();
|
|
|
|
/// <summary>
|
|
/// Descrizione area allarmi
|
|
/// </summary>
|
|
public string source { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// Oggetto modificato:
|
|
/// - true: l'oggetto è stato modificato e necessita salvataggio su filesystem
|
|
/// - false: dati in redis e filesystem allineati
|
|
/// </summary>
|
|
public bool changed { get; set; } = false;
|
|
|
|
/// <summary>
|
|
/// DataOra ultima operazione di salvataggio
|
|
/// </summary>
|
|
public DateTime lastWrite { get; set; } = DateTime.Now;
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |