Neighbourhood.omg.lol/Models/TimeData.cs

10 lines
318 B
C#

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; }
public static TimeData Empty { get => new TimeData(); }
}
}