using System.Collections.Generic; using NzbDrone.Core.Datastore; using NzbDrone.Core.Indexers; namespace NzbDrone.Core.Profiles.Metadata { public class MetadataProfile : ModelBase { public string Name { get; set; } public List PrimaryAlbumTypes { get; set; } public List SecondaryAlbumTypes { get; set; } public List ReleaseStatuses { get; set; } } }