using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace Mogafa.App.Assets { public class UserPeriodicAsset { [JsonProperty("accountId")] public string AccountId { get; set; } [JsonProperty("periodCode")] public string PeriodCode { get; set; } [JsonProperty("startTime")] public long StartTime { get; set; } [JsonProperty("endTime")] public long EndTime { get; set; } [JsonProperty("assetCode")] public string AssetCode { get; set; } [JsonProperty("income")] public long Income { get; set; } [JsonProperty("consumption")] public long Consumption { get; set; } [JsonProperty("assetDeltaValue")] public long AssetDeltaValue { get; set; } [JsonProperty("isPeriodEnded")] public bool IsPeriodEnded { get; set; } } }