using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace Mogafa.App.Tags { public class UserTag { public UserTag() { } [JsonProperty("name")] public string Name { get; set; } [JsonProperty("value")] public string Value { get; set; } [JsonProperty("lastModifiedTime")] public DateTime LastModifiedTime { get; set; } } }