15 lines
374 B
C#
15 lines
374 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Neighbourhood.omg.lol.Models {
|
|||
|
public class TimeData {
|
|||
|
public long? UnixEpochTime { get; set; }
|
|||
|
public string? Iso8601Time { get; set; }
|
|||
|
public string? Rfc2822Time { get; set; }
|
|||
|
public string? RelativeTime { get; set; }
|
|||
|
}
|
|||
|
}
|