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

10 lines
274 B
C#
Raw Normal View History

namespace jtom38.Newsbot.Domain.Models.Collector;
public class DiscordWebHookDto
{
public Guid ID { get; set; }
public string? Url { get; set; }
public string? Server { get; set; }
public string? Channel { get; set; }
public bool Enabled { get; set; }
}