c24ca4a3c2
- aggiunta classi base x DisplayAction - Aggiunta Message Pipe class
27 lines
809 B
C#
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
|
|
}
|
|
}
|