using System.Collections.Generic; namespace ZR.CodeGenerator.Model { public class ImportCodeGenTableDto { public int FrontTpl { get; set; } public string DbName { get; set; } public List Tables { get; set; } } public class CodeGenTables { public string Name { get; set; } public string Description { get; set; } } }