using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sony.Filtr.DeezerAPI { public class DeezerApplicationCredentials { public int ApplicationId { get; set; } public string ApplicationName { get; set; } public string SecretKey { get; set; } public string ApplicationDomain { get; set; } public string ContactEmail { get; set; } public string SiteUrl { get; set; } } }