PluralKit/PluralKit.Core/Models/SystemGuildSettings.cs

11 lines
285 B
C#
Raw Normal View History

namespace PluralKit.Core
{
public class SystemGuildSettings
{
public ulong Guild { get; }
public bool ProxyEnabled { get; } = true;
public AutoproxyMode AutoproxyMode { get; } = AutoproxyMode.Off;
public int? AutoproxyMember { get; }
}
}