using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sony.Filtr.AppleMusic.Streams { public class AppleMusicAggregatedS3File { public string FilePath { get; set; } public DateTime Date { get; set; } public int DistributorId { get; set; } public string Version { get; set; } public AppleS3FileType FileType { get; set; } public string Country { get; set; } public int VendorId { get; set; } } }