old_flsystem/类库/Api.Framework/Events/DyyNoticeEvent.cs

15 lines
289 B
C#
Raw Normal View History

2022-12-05 06:52:19 +00:00
using System;
namespace Api.Framework.Events
{
/// <summary>
/// 代运营通知事件
/// </summary>
public class DyyNoticeEvent : EventArgs
{
/// <summary>
/// 收到的数据
/// </summary>
public string Data { get; set; }
}
}