mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Initial Commit
This commit is contained in:
commit
74ac3bb599
106 changed files with 118079 additions and 0 deletions
55
NzbDrone.Core/Repository/Series.cs
Normal file
55
NzbDrone.Core/Repository/Series.cs
Normal file
|
@ -0,0 +1,55 @@
|
|||
using System;
|
||||
|
||||
namespace NzbDrone.Core.Repository
|
||||
{
|
||||
public class Series
|
||||
{
|
||||
public int Id
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public string SeriesName
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public string Status
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public string Overview
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public DayOfWeek? AirsDayOfWeek
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public string AirTimes
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public string Language
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public string Path
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue