mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
18 lines
425 B
C#
18 lines
425 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using AutoMapper;
|
|
using NzbDrone.Api.QualityProfiles;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Api.Resolvers
|
|
{
|
|
public class EndTimeResolver : ValueResolver<Episode, DateTime>
|
|
{
|
|
protected override DateTime ResolveCore(Episode source)
|
|
{
|
|
return source.AirDate.Value.AddMinutes(source.Series.Runtime);
|
|
}
|
|
}
|
|
}
|