using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sony.Filtr.SoundCloud.Model { public class SoundCloudAuthResponse { public string access_token { get; set; } public string refresh_token { get; set; } public string scope { get; set; } public int expires_in { get; set; } } }