mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
19 lines
426 B
C#
19 lines
426 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using AutoMapper;
|
|
|
|
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");
|
|
}
|
|
}
|
|
}
|