ffec555e85
- Completato aggiunta progetto - porting classi servizi/controlli/db a progetto - compilazione OK - manca gestione connString ottimizzata x il DB di origine CORRETTO (LAND/PROG/STATS)
26 lines
530 B
C#
26 lines
530 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MP.TaskMan.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
|
|
}
|
|
} |