10 lines
297 B
C#
10 lines
297 B
C#
|
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; }
|
||
|
}
|