mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-23 03:02:51 +08:00
19 lines
363 B
C#
19 lines
363 B
C#
using System.Collections.Generic;
|
|
|
|
namespace FreeSql.DatabaseModel
|
|
{
|
|
public class DbEnumInfo
|
|
{
|
|
|
|
/// <summary>
|
|
/// 枚举类型标识
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 枚举项
|
|
/// </summary>
|
|
public Dictionary<string, string> Labels { get; set; }
|
|
}
|
|
}
|