14 lines
365 B
C#
14 lines
365 B
C#
|
namespace MasstransferCommon.Model.Constant;
|
|||
|
|
|||
|
public class ProcessTopics
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 证书更新事件
|
|||
|
/// </summary>
|
|||
|
public const string LicenseUpdateEvent = "LicenseUpdateEvent";
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 证书更新事件反馈
|
|||
|
/// </summary>
|
|||
|
public const string LicenseUpdateEventFeedback = "LicenseUpdateEventFeedback";
|
|||
|
}
|