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 } }