7bdbeb6a82
Humanized dates now update automatically when a page is left open for some time.
29 lines
878 B
C#
29 lines
878 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using Disco.BI.Extensions;
|
|
|
|
namespace Disco.Web.Areas.API.Models.Job
|
|
{
|
|
public class _DateChangeModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string Result { get; set; }
|
|
public string UserDescription { get; set; }
|
|
public string DateTimeFull { get; set; }
|
|
public string DateTimeFriendly { get; set; }
|
|
public string DateTimeISO8601 { get; set; }
|
|
public long DateTimeUnixEpoc { get; set; }
|
|
|
|
public _DateChangeModel SetDateTime(DateTime? date)
|
|
{
|
|
this.DateTimeFriendly = date.FromNow(null);
|
|
this.DateTimeISO8601 = date.ToISO8601();
|
|
this.DateTimeUnixEpoc = date.ToUnixEpoc() ?? -1;
|
|
this.DateTimeFull = date.ToFullDateTime(null);
|
|
|
|
return this;
|
|
}
|
|
}
|
|
} |