EDBGS/EliteBGS/Util/DiscordWebhook.cs

14 lines
319 B
C#
Raw Normal View History

namespace EliteBGS.Util;
public class DiscordWebhook {
/// <summary>
/// Webhook URL
/// </summary>
public string Webhook { get; set; } = string.Empty;
/// <summary>
/// Human readable name for easier identification
/// </summary>
public string Name { get; set; } = string.Empty;
}