mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-07 03:22:37 +01:00
13 lines
350 B
C#
13 lines
350 B
C#
using System.Collections.Generic;
|
|
|
|
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; }
|
|
}
|
|
} |