12 lines
264 B
C#
12 lines
264 B
C#
|
|
namespace DoliMiddlewareApi.Services.Notifications;
|
||
|
|
|
||
|
|
public class WebhookSettings
|
||
|
|
{
|
||
|
|
public string? WebhookUrl { get; set; }
|
||
|
|
|
||
|
|
public WebhookSettings(IConfiguration configuration)
|
||
|
|
{
|
||
|
|
WebhookUrl = configuration["Notifications:WebhookUrl"];
|
||
|
|
}
|
||
|
|
}
|