mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 21:16:49 +00:00
12 lines
No EOL
330 B
C#
12 lines
No EOL
330 B
C#
namespace PluralKit.Core
|
|
{
|
|
public class SystemGuildSettings
|
|
{
|
|
public ulong Guild { get; }
|
|
public SystemId System { get; }
|
|
public bool ProxyEnabled { get; } = true;
|
|
|
|
public AutoproxyMode AutoproxyMode { get; } = AutoproxyMode.Off;
|
|
public MemberId? AutoproxyMember { get; }
|
|
}
|
|
} |