1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 08:22:35 +01:00
Sonarr/NzbDrone.Web/Models/SeasonModel.cs
Mark McDowall d7bc3a3734 Fancy grid, well getting there anyways.
Cell colour only in the "Command" column.
Cell colour toggles when ignored is toggled.
2012-02-04 20:36:39 -08:00

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; }
}
}