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