Neighbourhood.omg.lol/Models/API/NowData.cs

12 lines
324 B
C#

namespace Neighbourhood.omg.lol.Models
{
public class NowData {
public string Address { get; set; }
public string Url { get; set; }
public TimeData Updated { get; set; }
public string UpdatedRelative {
get => Utilities.RelativeTimeFromUnix(Convert.ToInt64(Updated.UnixEpochTime));
}
}
}