Newsbot.Cli/Newsbot.Domain/Models/Collector/SubscriptionDto.cs

10 lines
297 B
C#
Raw Normal View History

namespace jtom38.Newsbot.Domain.Models.Collector;
public class SubscriptionDto
{
public Guid Id { get; set; }
public Guid SourceId { get; set; }
public Guid DiscordWebHookId { get; set; }
public bool CodeAllowReleases { get; set; }
public bool CodeAllowCommits { get; set; }
}