mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 18:57:39 -07:00
Series Grid AJAX'd.
Edit in popup for Series Grid using custom editing template.
This commit is contained in:
parent
5c1c8466c1
commit
70bfc49b4e
9 changed files with 181 additions and 14 deletions
36
NzbDrone.Web/Models/SeriesModel.cs
Normal file
36
NzbDrone.Web/Models/SeriesModel.cs
Normal file
|
@ -0,0 +1,36 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using NzbDrone.Core.Repository;
|
||||
|
||||
namespace NzbDrone.Web.Models
|
||||
{
|
||||
public class SeriesModel
|
||||
{
|
||||
public int SeriesId { get; set; }
|
||||
|
||||
//View Only
|
||||
public string Title { get; set; }
|
||||
public int SeasonsCount { get; set; }
|
||||
public string Status { get; set; }
|
||||
public string AirsDayOfWeek { get; set; }
|
||||
public string QualityProfileName { get; set; }
|
||||
public string Overview { get; set; }
|
||||
|
||||
//View & Edit
|
||||
[DisplayName("Path")]
|
||||
public string Path { get; set; }
|
||||
|
||||
[DisplayName("Quality Profile")]
|
||||
public virtual int QualityProfileId { get; set; }
|
||||
|
||||
//Editing Only
|
||||
[DisplayName("Use Season Folder")]
|
||||
public bool SeasonFolder { get; set; }
|
||||
|
||||
[DisplayName("Monitored")]
|
||||
public bool Monitored { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue