Files
mapo-core/MP.Data/DisplayAction.cs
Samuele Locatelli 990ea5e2af SPEC:
- aggiunta e testata chiusura ODL
- aggiunta gestione reload forzoso se sparisce chiamata
2022-12-09 17:41:21 +01:00

22 lines
707 B
C#

using System;
namespace MP.Data
{
public class DisplayAction
{
#region Public Properties
public string CancelAction { get; set; } = "";
public string ConfirmAction { get; set; } = "";
public DateTime DtReq { get; set; } = DateTime.Now;
public bool IsActive { get; set; } = false;
public string Message { get; set; } = "New Message";
public bool ShowCancel { get; set; } = true;
public bool ShowClose { get; set; } = true;
public bool ShowConfirm { get; set; } = true;
public string Topic { get; set; } = "New Topic";
public string Parameter { get; set; } = "";
#endregion Public Properties
}
}