First idea of ResultModel
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using Datamodels.Enums;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Datamodels.SearchModels
|
||||
{
|
||||
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