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