mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Add Series, will need to design new and existing flows.
ScanProvider will need to be updated to support adding shows individually as well as SeriesProvider, GEt Unmapped will need to accept a path... move to ScanProvider perhaps.
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
|
||||
@@ -7,7 +9,14 @@ namespace NzbDrone.Web.Models
|
||||
{
|
||||
public class AddSeriesModel
|
||||
{
|
||||
[DataType(DataType.Text)]
|
||||
[DisplayName("Single Series Path")]
|
||||
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
||||
public string SingleSeries { get; set; }
|
||||
|
||||
[DataType(DataType.Text)]
|
||||
[DisplayName("Series Root Path")]
|
||||
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
||||
public string SeriesRoot { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user