using Datamodels.Enums; using System; using System.Collections.Generic; using System.Text; namespace Datamodels.SearchModels { /// /// Field base query Result /// 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; } } }