using Newtonsoft.Json; namespace Mogafa.App.ThirdParties { public class ThirdPartyUser { [JsonProperty("type")] public string Type { get; set; } [JsonProperty("appId")] public string AppId { get; set; } [JsonProperty("userId")] public string UserId { get; set; } [JsonProperty("userId2")] public string UserId2 { get; set; } } }