old_flsystem/FLSystem/Events/CommonEvents.cs

23 lines
446 B
C#
Raw Permalink Normal View History

2022-09-20 03:10:29 +00:00
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()
{
}
}
}