mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04:00
* Added: Add Release Status to Metadata Profile, Default to Official Only * Fixed: Unit Test and Comparison
16 lines
483 B
C#
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; }
|
|
|
|
}
|
|
}
|