mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-05 05:17:54 +00:00
11 lines
254 B
C#
11 lines
254 B
C#
|
|
#nullable enable
|
|||
|
|
namespace PluralKit.Core
|
|||
|
|
{
|
|||
|
|
public class MemberGuildSettings
|
|||
|
|
{
|
|||
|
|
public int Member { get; }
|
|||
|
|
public ulong Guild { get; }
|
|||
|
|
public string? DisplayName { get; }
|
|||
|
|
public string? AvatarUrl { get; }
|
|||
|
|
}
|
|||
|
|
}
|