using System.Collections.Generic; using System.Linq; namespace Sony.Filtr.PlaylistSynchronization { public class GenericPlaylist { public string Name { get; set; } public string Description { get; set; } public List Tracks { get; set; } public string Image { get; set; } public string User { get; set; } } }