using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sony.Filtr.Contracts.Entities { public class MusicServicePlaylistReference { public MusicServicePlaylistReference() { } public MusicServicePlaylistReference(string playlistId, int musicServiceId) { PlaylistId = playlistId; MusicServiceId = musicServiceId; } public string PlaylistId { get; set; } public int MusicServiceId { get; set; } } }