15 lines
266 B
C#
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; }
|
|
}
|
|
}
|