17 lines
358 B
C#
17 lines
358 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ZR.CodeGenerator.Model
|
|
{
|
|
public class ImportCodeGenTableDto
|
|
{
|
|
public string DbName { get; set; }
|
|
public List<CodeGenTables> Tables { get; set; }
|
|
}
|
|
|
|
public class CodeGenTables
|
|
{
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
}
|
|
}
|