15 lines
289 B
C#
15 lines
289 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Api.Framework.Events
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 代运营通知事件
|
|||
|
/// </summary>
|
|||
|
public class DyyNoticeEvent : EventArgs
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 收到的数据
|
|||
|
/// </summary>
|
|||
|
public string Data { get; set; }
|
|||
|
}
|
|||
|
}
|