using System;
using System.Collections.Generic;
using System.Text;
namespace GxPress.Request.Thesaurus
{
///
/// 添加词库传参数
///
public class ThesaurusInRequest
{
///
/// 词库类型 1 热词 2 冷词
///
public int ThesaurusType { get; set; }
///
/// 词库名称
///
public string ThesaurusName { get; set; }
}
}