using JNPF.DependencyInjection;
using JNPF.Systems.Entitys.System;
namespace JNPF.Systems.Entitys.Dto.DictionaryData;
///
/// 数据字典导入输入.
///
[SuppressSniffer]
public class DictionaryDataExportInput
{
public List list { get; set; } = new List();
public List modelList { get; set; } = new List();
}