990ea5e2af
- aggiunta e testata chiusura ODL - aggiunta gestione reload forzoso se sparisce chiamata
22 lines
707 B
C#
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
|
|
}
|
|
} |