Add Last Search Time to /episode API
This commit is contained in:
parent
2f04b037a1
commit
68181d9b09
|
@ -35,7 +35,7 @@ namespace Sonarr.Api.V3.Episodes
|
||||||
public DateTime? EndTime { get; set; }
|
public DateTime? EndTime { get; set; }
|
||||||
public DateTime? GrabDate { get; set; }
|
public DateTime? GrabDate { get; set; }
|
||||||
public SeriesResource Series { get; set; }
|
public SeriesResource Series { get; set; }
|
||||||
|
public DateTime? LastSearchTime { get; set; }
|
||||||
public List<MediaCover> Images { get; set; }
|
public List<MediaCover> Images { get; set; }
|
||||||
|
|
||||||
// Hiding this so people don't think its usable (only used to set the initial state)
|
// Hiding this so people don't think its usable (only used to set the initial state)
|
||||||
|
@ -68,6 +68,7 @@ namespace Sonarr.Api.V3.Episodes
|
||||||
Runtime = model.Runtime,
|
Runtime = model.Runtime,
|
||||||
FinaleType = model.FinaleType,
|
FinaleType = model.FinaleType,
|
||||||
Overview = model.Overview,
|
Overview = model.Overview,
|
||||||
|
LastSearchTime = model.LastSearchTime,
|
||||||
|
|
||||||
// EpisodeFile
|
// EpisodeFile
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue