ImportCodeGenTableDto.cs 400 B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. namespace ZR.CodeGenerator.Model
  3. {
  4. public class ImportCodeGenTableDto
  5. {
  6. public int FrontTpl { get; set; }
  7. public string DbName { get; set; }
  8. public List<CodeGenTables> Tables { get; set; }
  9. }
  10. public class CodeGenTables
  11. {
  12. public string Name { get; set; }
  13. public string Description { get; set; }
  14. }
  15. }