18 lines
256 B
C#
18 lines
256 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Datamodels.Enums
|
|
{
|
|
public enum FieldTypes
|
|
{
|
|
String,
|
|
Integer,
|
|
Double,
|
|
Boolean,
|
|
DateTime,
|
|
Currency,
|
|
Blob
|
|
}
|
|
}
|