You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/NzbDrone.Core/Profiles/Metadata/MetadataProfile.cs

14 lines
452 B

using System.Collections.Generic;
using NzbDrone.Core.Datastore;
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; }
}
}