mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Resharper code cleanup
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user