27 lines
530 B
C#
27 lines
530 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Maat.Data.Services
|
|
{
|
|
public class ReloadEventArgs : EventArgs
|
|
{
|
|
#region Public Constructors
|
|
|
|
public ReloadEventArgs(string messaggio)
|
|
{
|
|
this.ReloadMessage = messaggio;
|
|
}
|
|
|
|
#endregion Public Constructors
|
|
|
|
#region Public Properties
|
|
|
|
public string ReloadMessage { get; set; } = "";
|
|
|
|
#endregion Public Properties
|
|
}
|
|
}
|