Skip to content

Commit

Permalink
add guildflag
Browse files Browse the repository at this point in the history
  • Loading branch information
th0mk committed Jun 14, 2023
1 parent a293a88 commit abe57a4
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/FMBot.Domain/Models/GuildFlags.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;
using FMBot.Domain.Attributes;

namespace FMBot.Domain.Models;

[Flags]
public enum GuildFlags : long
{
StaffCommandsAvailable = 1 << 1,
PremiumServerTester = 1 << 2,
LegacyWhoKnowsWhitelist = 1 << 3,
}

0 comments on commit abe57a4

Please sign in to comment.