Resharper code cleanup

This commit is contained in:
Keivan 2010-09-27 22:58:49 -07:00
commit d00744aafa
11 changed files with 46 additions and 130 deletions

View file

@ -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; }
}
}
}