namespace Newsbot.Collector.Domain.Entities; public class DiscordWebhookEntity { 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; } }