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