23 lines
615 B
C#
Raw Normal View History

2020-03-24 09:47:08 +01:00
using System;
using System.Collections.Generic;
using Newtonsoft.Json.Linq;
namespace FarmmapsApi.Models
{
public class ItemRequest
{
public ItemRequest()
{
Tags = new List<string>();
}
public string ParentCode { get; set; }
public string ItemType { get; set; }
public string Name { get; set; }
public DateTime? DataDate { get; set; }
2020-03-24 23:26:02 +01:00
public DateTime? DataEndDate { get; set; }
2020-03-24 09:47:08 +01:00
public JObject Geometry { get; set; }
public JObject Data { get; set; }
public IList<string> Tags { get; set; }
}
}