namespace PluralRichPresence.SimplyPlural { public class Fronter { public string Id; public ulong Timestamp; public Fronter(string id, ulong timestamp) { this.Id = id; this.Timestamp = timestamp; } } }