using System.Collections.Generic; 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 OwnerId { get; set; } public string OwnerName { get; set; } } }