Neighbourhood.omg.lol/Models/TimeData.cs

11 lines
318 B
C#
Raw Normal View History

2024-07-11 05:57:53 +00:00
namespace Neighbourhood.omg.lol.Models {
2024-06-11 00:36:48 +00:00
public class TimeData {
public long? UnixEpochTime { get; set; }
public string? Iso8601Time { get; set; }
public string? Rfc2822Time { get; set; }
public string? RelativeTime { get; set; }
2024-07-02 00:29:50 +00:00
public static TimeData Empty { get => new TimeData(); }
2024-06-11 00:36:48 +00:00
}
}