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