longfellowJian 76792ef9ad 初始化
2025-03-27 16:06:44 +08:00

22 lines
530 B
C#

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