22 lines
617 B
C#
22 lines
617 B
C#
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; }
|
|
}
|
|
}
|