Files
MoonPro.net/MapoDb/DisplayAction.cs
Samuele Locatelli 32fb68fa68 CodeMaid:
- Cleanup codice area MapoDb
2022-12-21 15:11:04 +01:00

22 lines
706 B
C#

using System;
namespace MapoDb
{
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 string Parameter { get; set; } = "";
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";
#endregion Public Properties
}
}