ziyuandigitalbackend/DOAN.CodeGenerator/Model/ImportCodeGenTableDto.cs
2024-08-16 18:02:59 +08:00

18 lines
402 B
C#

using System.Collections.Generic;
namespace DOAN.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; }
}
}