MasstransferExporter/MasstransferCommon/Model/Constant/ProcessTopics.cs

39 lines
1.1 KiB
C#
Raw Normal View History

2024-07-03 06:24:17 +00:00
namespace MasstransferCommon.Model.Constant;
public class ProcessTopics
{
/// <summary>
/// 证书更新事件
/// </summary>
public const string LicenseUpdateEvent = "LicenseUpdateEvent";
/// <summary>
/// 证书更新事件反馈
/// </summary>
public const string LicenseUpdateEventFeedback = "LicenseUpdateEventFeedback";
2024-08-27 09:09:48 +00:00
/// <summary>
/// OTA请求事件
/// </summary>
public const string OTAQueryEvent = "OTAUpdataQueryEvent";
/// <summary>
/// OTA请求反馈事件
/// </summary>
public const string OTAQueryEventFeedback = "OTAQueryEventFeedback";
/// <summary>
/// OTA更新事件
/// </summary>
public const string OTAUpdateEvent = "OTAUpdateEvent";
/// <summary>
/// 下载更新包事件
/// </summary>
public const string DownloadUpdatePackageEvent = "DownloadUpdatePackageEvent";
/// <summary>
/// 下载更新包事件反馈
/// </summary>
public const string DownloadUpdatePackageEventFeedback = "DownloadUpdatePackageEventFeedback";
2024-07-03 06:24:17 +00:00
}