1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-03 15:12:13 +02:00

39 lines
888 B
C#
Raw Normal View History

2010-09-22 20:19:47 -07:00
using System;
using System.Collections.Generic;
2010-09-24 00:14:42 -07:00
using SubSonic.SqlGeneration.Schema;
2010-09-22 20:19:47 -07:00
namespace NzbDrone.Core.Repository
{
public class Series
{
[SubSonicPrimaryKey(false)]
public int TvdbId { get; set; }
2010-09-27 22:58:49 -07:00
2010-10-02 12:01:43 -07:00
public string Title { get; set; }
public string CleanTitle { get; set; }
2010-09-27 22:58:49 -07:00
public string Status { get; set; }
2010-09-22 20:19:47 -07:00
2010-09-24 00:14:42 -07:00
[SubSonicLongString]
2010-09-27 22:58:49 -07:00
public string Overview { get; set; }
public DayOfWeek? AirsDayOfWeek { get; set; }
public String AirTimes { get; set; }
public string Language { get; set; }
2010-09-24 00:14:42 -07:00
2010-09-27 22:58:49 -07:00
public string Path { get; set; }
2010-10-02 12:01:43 -07:00
public bool Monitored { get; set; }
[SubSonicToManyRelation]
public virtual List<Season> Seasons { get; private set; }
[SubSonicToManyRelation]
public virtual List<Episode> Episodes { get; private set; }
2010-10-02 12:01:43 -07:00
2010-09-22 20:19:47 -07:00
}
2010-09-27 22:58:49 -07:00
}