mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-05-02 21:17:30 +03:00
19 lines
318 B
C#
19 lines
318 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Content.Server.Discord;
|
|
|
|
public struct WebhookMentions
|
|
{
|
|
[JsonPropertyName("parse")]
|
|
public HashSet<string> Parse { get; set; } = new();
|
|
|
|
public WebhookMentions()
|
|
{
|
|
}
|
|
|
|
public void AllowRoleMentions()
|
|
{
|
|
Parse.Add("roles");
|
|
}
|
|
}
|