mirror of
https://github.com/Radarr/Radarr
synced 2025-12-26 02:03:53 +01:00
Add [PROPER] to titleFix if it's a proper. User can now change the QualityProfile when adding a series (new or existing), option will default to their DefaultQualityProfile.
14 lines
303 B
C#
14 lines
303 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Core.Model
|
|
{
|
|
public class SeriesMappingModel
|
|
{
|
|
public string Path { get; set; }
|
|
public int TvDbId { get; set; }
|
|
public int QualityProfileId { get; set; }
|
|
}
|
|
}
|