namespace Newsbot.Collector.Domain.Requests; public class NewDiscordNotificationRequest { public Guid SourceId { get; set; } public Guid DiscordId { get; set; } public bool AllowReleases { get; set; } = false; public bool AllowCommits { get; set; } = false; }