using System.Linq; namespace Sony.Filtr.SpotifyAnalytics.Models { public class AutenticationResponse { public string access_token { get; set; } public string token_type { get; set; } public int expires_in { get; set; } } }