PluralKit/PluralKit.Core/Models/MemberGuildSettings.cs

11 lines
254 B
C#
Raw Normal View History

#nullable enable
namespace PluralKit.Core
{
public class MemberGuildSettings
{
public int Member { get; }
public ulong Guild { get; }
public string? DisplayName { get; }
public string? AvatarUrl { get; }
}
}