2021-09-06 18:36:22 +08:00

15 lines
266 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ZR.Model.CodeGenerator
{
public class DataBaseInfo
{
/// <summary>
/// 数据库名称
/// </summary>
public string DbName { get; set; }
}
}