mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-24 17:13:41 -04:00
15 lines
369 B
C#
15 lines
369 B
C#
namespace Cleanuparr.Api.Features.Notifications.Contracts.Requests;
|
|
|
|
public sealed record TestTelegramProviderRequest
|
|
{
|
|
public string BotToken { get; init; } = string.Empty;
|
|
|
|
public string ChatId { get; init; } = string.Empty;
|
|
|
|
public string? TopicId { get; init; }
|
|
|
|
public bool SendSilently { get; init; }
|
|
|
|
public Guid? ProviderId { get; init; }
|
|
}
|