You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using Microsoft.AspNetCore.Http;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.MorkCL.Model
- {
- /// <summary>
- /// 委托通知主题
- /// </summary>
- internal class NotifyTopic
- {
- private static string Header => "MorkCL/";
- /// <summary>
- /// 机器人初始化
- /// </summary>
- public static string RobotInit => $"{Header}RobotInit";
-
- /// <summary>
- /// 本地配方下发通知
- /// </summary>
- public static string FormulaDistribution => $"{Header}FormulaDistribution";
-
- public static string ItemStorage => $"{Header}ItemStorage";
- }
- }
|