using System; using System.Collections.Generic; namespace Kean.Domain { /// /// 表示通知 /// public interface INotification : IList, IDisposable { // 该接口仅作为一个标识 } }