First idea of ResultModel

This commit is contained in:
Roland Fieger
2021-08-28 15:40:03 +02:00
parent 2de05c3856
commit 3b5ae86ce5
21 changed files with 139 additions and 187 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Datamodels.Enums
{
public enum FieldTypes
{
String,
Integer,
Double,
Boolean,
DateTime,
Currency,
Blob
}
}

View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Datamodels.Enums
{
public enum JoinTypes
{
And,
Or
}
}

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Datamodels.Enums
{
public enum PhraseOperators
{
Equal,
NotEqual,
LowerThan,
LowerThanOrEqual,
GreaterThan,
GreaterThanOrEqual,
StartsWith,
Contains,
EndsWith
}
}

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Datamodels.Enums
{
public enum SearchTypes
{
Phrase,
Range,
Terms
}
}