PluralRichPresence/PluralRichPresnce/SimplyPlural/Fronter.cs

15 lines
282 B
C#
Raw Permalink Normal View History

2023-12-28 10:28:49 +00:00
namespace PluralRichPresence.SimplyPlural
2023-11-19 04:16:33 +00:00
{
public class Fronter
{
public string Id;
public ulong Timestamp;
public Fronter(string id, ulong timestamp)
{
this.Id = id;
this.Timestamp = timestamp;
}
}
}