Files
MoonPro.net/MapoDb/DisplayAction.cs
T
Samuele Locatelli c24ca4a3c2 MP-IO & MapoDB:
- aggiunta classi base x DisplayAction
- Aggiunta Message Pipe class
2022-12-09 19:00:35 +01:00

27 lines
809 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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 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
}
}