Files
sockeye/server/biz/UiFieldDataType.cs
2022-12-16 06:01:23 +00:00

29 lines
790 B
C#

using System.Collections.Generic;
namespace Sockeye.Biz
{
//DataTypes used to format display properly and for custom fields definition etc
public enum UiFieldDataType : int
{
NoType = 0,
DateTime = 1,
Date = 2,
Time = 3,
Text = 4,
Integer = 5,
Bool = 6,
Decimal = 7,
Currency = 8,
Tags = 9,
Enum = 10,
EmailAddress = 11,
HTTP = 12,
InternalId = 13,
MemorySize = 14,//this is so client can convert what would normally be an Integer type to human readable file / ram size value
TimeSpan=15,
PhoneNumber=16,//this is so client can dial directly,
Roles = 17
// ,//for grid display (users), Percentage = 18 ? YAGNI?
}
}