using Microsoft.AspNetCore.Http;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BPASmartClient.MorkCL.Model
{
///
/// 委托通知主题
///
internal class NotifyTopic
{
private static string Header => "MorkCL/";
///
/// 机器人初始化
///
public static string RobotInit => $"{Header}RobotInit";
///
/// 本地配方下发通知
///
public static string FormulaDistribution => $"{Header}FormulaDistribution";
public static string ItemStorage => $"{Header}ItemStorage";
}
}