mirror of
https://github.com/Readarr/Readarr
synced 2026-02-07 23:33:16 +01:00
13 lines
No EOL
350 B
C#
13 lines
No EOL
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; }
|
|
}
|
|
} |