using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace Mogafa.App.AppDatas { public class UserAppDataRecord { public UserAppDataRecord() { FlowId = Guid.NewGuid().ToString(); } [JsonProperty("flowId")] public string FlowId { get; set; } [JsonProperty("userId")] public string UserId { get; set; } [JsonProperty("code")] public string Code { get; set; } [JsonProperty("valueOfBefore")] public long ValueOfBefore { get; set; } [JsonProperty("value")] public long Value { get; set; } [JsonProperty("source")] public string Source { get; set; } [JsonProperty("sourceId")] public string SourceId { get; set; } [JsonProperty("time")] public long Time { get; set; } } }