PluralRichPresence/PluralRichPresnce/Discord/SystemMember.cs

26 lines
619 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PluralRichPresence.Discord
{
public class SystemMember
{
public string Name;
public string Pronouns;
public string? ProfilePhotoUrl;
public ulong? TimeStamp;
public SystemMember(string name, string pronouns, string? profilePhotoUrl, ulong? timeStamp)
{
this.Name = name;
this.Pronouns = pronouns;
this.ProfilePhotoUrl = profilePhotoUrl;
this.TimeStamp = timeStamp;
}
}
}