Newsbot.Collector/Newsbot.Collector.Domain/Entities/SubscriptionEntity.cs

11 lines
300 B
C#

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