Files
Readarr/src/NzbDrone.Core/Profiles/Metadata/MetadataProfile.cs
Qstick df4e1e9b26 Added: Add Release Status to Metadata Profile, Default to Official Only (#250)
* Added: Add Release Status to Metadata Profile, Default to Official Only

* Fixed: Unit Test and Comparison
2018-03-21 20:43:10 -04:00

16 lines
483 B
C#

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<ProfilePrimaryAlbumTypeItem> PrimaryAlbumTypes { get; set; }
public List<ProfileSecondaryAlbumTypeItem> SecondaryAlbumTypes { get; set; }
public List<ProfileReleaseStatusItem> ReleaseStatuses { get; set; }
}
}