using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
/// 添加参数配置
///
public class AddParasConfigureInput
{
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 类型
///
public string Type { get; set; }
///
/// 值
///
public string Value { get; set; }
///
/// 说明
///
public string Description { get; set; }
}
}