mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-19 11:17:50 -05:00
13 lines
367 B
C#
13 lines
367 B
C#
namespace Cleanuparr.Api.Features.Notifications.Contracts.Requests;
|
|
|
|
public sealed record CreateTelegramProviderRequest : CreateNotificationProviderRequestBase
|
|
{
|
|
public string BotToken { get; init; } = string.Empty;
|
|
|
|
public string ChatId { get; init; } = string.Empty;
|
|
|
|
public string? TopicId { get; init; }
|
|
|
|
public bool SendSilently { get; init; }
|
|
}
|