mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-10-31 07:52:37 +01:00
16 lines
388 B
C#
16 lines
388 B
C#
|
using System;
|
|||
|
using NzbDrone.Core.Model;
|
|||
|
using PetaPoco;
|
|||
|
|
|||
|
namespace NzbDrone.Core.Repository
|
|||
|
{
|
|||
|
[TableName("Seasons")]
|
|||
|
[PrimaryKey("SeasonId", autoIncrement = true)]
|
|||
|
public class Season
|
|||
|
{
|
|||
|
public int SeasonId { get; set; }
|
|||
|
public int SeriesId { get; set; }
|
|||
|
public int SeasonNumber { get; set; }
|
|||
|
public Boolean Ignored { get; set; }
|
|||
|
}
|
|||
|
}
|