10 lines
287 B
C#
10 lines
287 B
C#
namespace Newsbot.Collector.Domain.Entities;
|
|
|
|
public class DiscordWebhookEntity
|
|
{
|
|
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; }
|
|
} |