Newsbot.Collector/Newsbot.Collector.Domain/Requests/NewDiscordWebhookRequest.cs
James Tombleson 82dea60126
All checks were successful
continuous-integration/drone/pr Build is passing
Updated DiscordWebHooks to handle userId
2023-07-29 09:44:15 -07:00

8 lines
205 B
C#

namespace Newsbot.Collector.Domain.Requests;
public class NewDiscordWebhookRequest
{
public string? Url { get; set; }
public string? Server { get; set; }
public string? Channel { get; set; }
}