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/Music/Model/AddAlbumOptions.cs

23 lines
454 B

using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Music
{
public class AddAlbumOptions : IEmbeddedDocument
{
public AddAlbumOptions()
{
// default in case not set in db
AddType = AlbumAddType.Automatic;
}
public AlbumAddType AddType { get; set; }
public bool SearchForNewAlbum { get; set; }
}
public enum AlbumAddType
{
Automatic,
Manual
}
}