10 lines
274 B
C#
10 lines
274 B
C#
|
namespace jtom38.Newsbot.Domain.Models.Collector;
|
||
|
|
||
|
public class DiscordWebHookDto
|
||
|
{
|
||
|
public Guid ID { get; set; }
|
||
|
public string? Url { get; set; }
|
||
|
public string? Server { get; set; }
|
||
|
public string? Channel { get; set; }
|
||
|
public bool Enabled { get; set; }
|
||
|
}
|