using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DidabuCloud.Unity.Core { public class UpdateAppDataDto { public UpdateAppDataDto() { } [JsonProperty("accountId")] public string AccountId { get; set; } [JsonProperty("appId")] public string AppId { get; set; } [JsonProperty("code")] public string Code { get; set; } [JsonProperty("value")] public long Value { get; set; } } }