using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BPASmart.Model
{
///
/// 管道主题
///
public class PipeTopic
{
///
/// 管道通讯名称
///
public const string PipeName = "ConfigurationPipe";
///
/// 变量保存消息
///
public const string VarSave = "VarSave";
///
/// 退出通知消息
///
public const string ExitNotify = "ExitNotify";
}
}