mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-12 11:15:43 +02:00
e62cb3b5da
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.
15 lines
303 B
C#
15 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; }
|
|
}
|
|
}
|