using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FLSystem.Events { public class CommonEvents:EventArgs { public Dictionary Commons { get; private set; } public CommonEvents(Dictionary Commons) { this.Commons = Commons; } public CommonEvents() { } } }