Delegates.cs 283 Bytes
using HHECS.Infrastructure.Notice;
using System;

namespace HHECS.Infrastructure
{
    /// <summary>
    /// 系统中内置的委托
    /// </summary>
    public class Delegates
    {
        public delegate void NoticeEventHandle(Object sender, NoticeEventArgs args);

    }
}