deleted some old files. updated some ui

This commit is contained in:
kay.one 2011-03-30 18:42:27 -07:00
commit d310c06f2e
107 changed files with 446 additions and 664 deletions

View file

@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using NzbDrone.Core.Repository.Quality;
using SubSonic.SqlGeneration.Schema;
@ -20,6 +21,7 @@ namespace NzbDrone.Core.Repository
[SubSonicLongString]
public string Overview { get; set; }
[DisplayName("Air on")]
public DayOfWeek? AirsDayOfWeek { get; set; }
public String AirTimes { get; set; }
@ -30,11 +32,11 @@ namespace NzbDrone.Core.Repository
public bool Monitored { get; set; }
public int QualityProfileId { get; set; }
public virtual int QualityProfileId { get; set; }
public bool SeasonFolder { get; set; }
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
[SubSonicToOneRelation(ThisClassContainsJoinKey = true, JoinKeyName = "QualityProfileId")]
public virtual QualityProfile QualityProfile { get; private set; }
[SubSonicToManyRelation]