using System.Collections.Generic; using System.Linq; using Sony.Filtr.Contracts.Definitions; namespace Sony.Filtr.Tasks.Tasks.SonyReleases { public class SonyUpcAlbum { public string UPC { get; set; } public string Label { get; set; } public MusicService MusicService { get; set; } public List Regions { get; set; } public bool Revoked { get; set; } } }