mirror of
https://github.com/Radarr/Radarr
synced 2024-12-25 17:27:59 +00:00
2e9dd7f1ff
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.
22 lines
No EOL
607 B
C#
22 lines
No EOL
607 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
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; }
|
|
}
|
|
} |