mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
13 lines
345 B
C#
13 lines
345 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Threading.Tasks;
|
||
|
using Wabbajack.Networking.Http.Interfaces;
|
||
|
|
||
|
namespace Wabbajack.Networking.Discord
|
||
|
{
|
||
|
public class DiscordWebHookSetting
|
||
|
{
|
||
|
public string AuthToken { get; set; } = "";
|
||
|
public Uri WebHook { get; set; } = new("https://www.wabbajack.org");
|
||
|
}
|
||
|
}
|