You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
462 B
20 lines
462 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using AutoMapper;
|
|
using NzbDrone.Api.QualityProfiles;
|
|
|
|
namespace NzbDrone.Api.Resolvers
|
|
{
|
|
public class NullableDatetimeToString : ValueResolver<DateTime?, String>
|
|
{
|
|
protected override String ResolveCore(DateTime? source)
|
|
{
|
|
if(!source.HasValue)
|
|
return String.Empty;
|
|
|
|
return source.Value.ToString("yyyy-MM-dd");
|
|
}
|
|
}
|
|
}
|