James Tombleson
82dea60126
All checks were successful
continuous-integration/drone/pr Build is passing
8 lines
205 B
C#
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; }
|
|
} |