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; }
|
||
|
}
|