FarmMapsApiClient_WURtest/FarmmapsApi/Models/ItemRequest.cs

23 lines
615 B
C#
Raw Normal View History

2020-03-24 08:47:08 +00: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 22:26:02 +00:00
public DateTime? DataEndDate { get; set; }
2020-03-24 08:47:08 +00:00
public JObject Geometry { get; set; }
public JObject Data { get; set; }
public IList<string> Tags { get; set; }
}
}