Initial
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
|
||||
namespace Datamodels.SearchModels
|
||||
{
|
||||
|
||||
public enum FieldTypes
|
||||
{
|
||||
String,
|
||||
Integer,
|
||||
Double,
|
||||
Boolean,
|
||||
DateTime,
|
||||
Currency,
|
||||
Blob
|
||||
}
|
||||
public sealed class FieldModel
|
||||
{
|
||||
public string FieldName { get; set; }
|
||||
public FieldTypes FieldType { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user