Files
mapo-core/MP.Data/DisplayAction.cs
T
2022-12-09 16:10:31 +01:00

22 lines
706 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; } = true;
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
}
}