using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace Mogafa.App.Behaviours { public class Behaviour { public Behaviour() { } [JsonProperty("code")] public string Code { get; set; } [JsonProperty("value")] public long Value { get; set; } } }