first things
This commit is contained in:
21
Datamodels/SearchModels/ResultFieldModel.cs
Normal file
21
Datamodels/SearchModels/ResultFieldModel.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using Datamodels.Enums;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Datamodels.SearchModels
|
||||
{
|
||||
/// <summary>
|
||||
/// Field base query Result
|
||||
/// </summary>
|
||||
public class ResultFieldModel
|
||||
{
|
||||
public FieldTypes FieldType { get; set; }
|
||||
public string FieldContent { get; set; }
|
||||
public int FieldContentInt { get; set; }
|
||||
public DateTime FieldContentDate { get; set; }
|
||||
public Decimal FieldContentDecimal { get; set; }
|
||||
public float FieldContentFloat { get; set; }
|
||||
public string FieldContentString { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user