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