using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Sony.Filtr.AdminAPI.ViewModels { public class LinkedPlaylistsViewModel { public int PlaylistContainerId { get; set; } public List LinkedPlaylists { get; set; } } public class LinkedPlaylist { public int MusicServiceId { get; set; } public string PlaylistId { get; set; } } }