mirror of
https://github.com/Readarr/Readarr
synced 2026-01-15 20:13:17 +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; }
|
|
}
|
|
}
|