using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MP.Data.Services { /// /// Gestione eventi reload da forzare via mesaggio /// FixMe ToDo !!! è ancora necessario con obj task estratti?!?!? /// 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 } }