using System;
using System.Collections.Generic;
using System.Text;
namespace BBWY.Client.Models.APIModel
{
public class GetDictionaryByKeyResponse
{
///
/// 字典类型
///
public string Key { get; set; }
///
/// 字典类型名称
///
public string KeyName { get; set; }
///
/// 字典值列表
///
public IList DicValueList { get; set; }
}
public class DicValue
{
///
/// 字典值
///
public string Value { get; set; }
///
/// 字典值标签
///
public string ValueName { get; set; }
}
}