Newsbot.Collector/Newsbot.Collector.Domain/Entities/DiscordNotificationEntity.cs

11 lines
307 B
C#

namespace Newsbot.Collector.Domain.Entities;
public class DiscordNotificationEntity
{
public Guid Id { get; set; }
public bool CodeAllowReleases { get; set; }
public bool CodeAllowCommits { get; set; }
public Guid SourceId { get; set; }
public Guid DiscordWebHookId { get; set; }
}