14 lines
319 B
C#
14 lines
319 B
C#
|
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;
|
|||
|
}
|