mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-10-31 07:52:37 +01: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
607 B
C#
22 lines
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; }
|
|
}
|
|
} |