mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
Resharper code cleanup
This commit is contained in:
parent
c7286863b0
commit
d00744aafa
11 changed files with 46 additions and 130 deletions
|
@ -6,54 +6,21 @@ namespace NzbDrone.Core.Repository
|
|||
public class Series
|
||||
{
|
||||
[SubSonicPrimaryKey]
|
||||
public string TvdbId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string TvdbId { get; set; }
|
||||
|
||||
public string SeriesName
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string SeriesName { get; set; }
|
||||
|
||||
public string Status
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string Status { get; set; }
|
||||
|
||||
[SubSonicLongString]
|
||||
public string Overview
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string Overview { get; set; }
|
||||
|
||||
public DayOfWeek? AirsDayOfWeek
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public DayOfWeek? AirsDayOfWeek { get; set; }
|
||||
|
||||
public String AirTimes
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public String AirTimes { get; set; }
|
||||
|
||||
public string Language
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public string Path
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string Language { get; set; }
|
||||
|
||||
public string Path { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue