using System; using System.Collections.Generic; using System.Text; namespace MT.Platform.Common { /// /// Notifications are sent in-process, cross-process, etc. /// public enum NotificationScope { /// /// Subscribers are in the same process and AppDomain /// Local, /// /// Subscribers can also be in other processes. Needs remote notification strategy attached. /// Remote } }