Files
MsAddIns/QuickModeling/Models/TypeKind.cs
2026-02-28 21:01:57 +08:00

34 lines
786 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.ComponentModel;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
namespace QuickModeling.Models
{
[JsonConverter(typeof(StringEnumConverter))]
public enum TypeKind
{
[Description("布尔值")]
Boolean = 0,
//[Description("日期")]
//DateTime = 1,
/// <summary>
/// Number数字支持WorkUnit
/// </summary>
[Description("数字")]
Double = 2,
[Description("整数")]
Integer = 3,
/// <summary>
/// 点坐标支持WorkUnit
/// </summary>
//[Description("坐标点")]
//Point = 4,
[Description("字符串")]
String = 5,
//[Description("自定义")]
//Custom
}
}