zhengzhou-byd-lms/DOAN.CodeGenerator/Model/ImportCodeGenTableDto.cs
2024-12-23 13:16:06 +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; }
}
}