mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
d7bc3a3734
Cell colour only in the "Command" column. Cell colour toggles when ignored is toggled.
18 lines
470 B
C#
18 lines
470 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Web;
|
|
using NzbDrone.Core.Model;
|
|
using NzbDrone.Core.Repository;
|
|
|
|
namespace NzbDrone.Web.Models
|
|
{
|
|
public class SeasonModel
|
|
{
|
|
public int SeriesId { get; set; }
|
|
public int SeasonNumber { get; set; }
|
|
public List<EpisodeModel> Episodes { get; set; }
|
|
public bool AnyWanted { get; set; }
|
|
public string CommonStatus { get; set; }
|
|
}
|
|
} |