23 lines
446 B
C#
23 lines
446 B
C#
|
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<string, object> Commons { get; private set; }
|
|||
|
|
|||
|
public CommonEvents(Dictionary<string, object> Commons)
|
|||
|
{
|
|||
|
this.Commons = Commons;
|
|||
|
}
|
|||
|
|
|||
|
public CommonEvents()
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|