18 lines
402 B
C#
Raw Normal View History

2025-10-21 13:38:23 +08:00
using System.Collections.Generic;
namespace RIZO.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; }
}
}