mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
better Series.ToString()
This commit is contained in:
parent
2d41ebcc78
commit
a216e37d6a
12 changed files with 35 additions and 30 deletions
|
@ -3,6 +3,7 @@ using System.Collections.Generic;
|
|||
using Marr.Data;
|
||||
using NzbDrone.Core.Datastore;
|
||||
using NzbDrone.Core.Qualities;
|
||||
using NzbDrone.Common;
|
||||
|
||||
|
||||
namespace NzbDrone.Core.Tv
|
||||
|
@ -39,5 +40,10 @@ namespace NzbDrone.Core.Tv
|
|||
|
||||
public DateTime? FirstAired { get; set; }
|
||||
public LazyLoaded<QualityProfile> QualityProfile { get; set; }
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return string.Format("[{0}][{1}]", Id, Title.NullSafe());
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue