using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation
{
///
/// 通道参数
///
public class Paras_Queue
{
///
/// 数据对接通道名称
///
public string DataDockingQueueName { get; set; }
///
/// 存储通道名称
///
public string StoreQueueName { get; set;}
///
/// 运行交换机名称
///
public string RunExChangeName { get; set; }
}
}