PluralKit/PluralKit.Core/Models/SystemGuildSettings.cs
Ske a915ddb41c Extract system/member guild settings and refactor DB access
(also refactor MemberAvatar now that I'm here)
2020-06-13 16:03:57 +02:00

11 lines
285 B
C#

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; }
}
}