2024-06-11 00:36:48 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
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 {
|
2024-06-14 07:20:04 +00:00
|
|
|
|
get => Utilities.RelativeTimeFromUnix(Convert.ToInt64(Updated.UnixEpochTime));
|
2024-06-11 00:36:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|