mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-26 10:03:12 -04:00
11 lines
276 B
C#
11 lines
276 B
C#
namespace Cleanuparr.Api.Features.Notifications.Contracts.Requests;
|
|
|
|
public record TestNotifiarrProviderRequest
|
|
{
|
|
public string ApiKey { get; init; } = string.Empty;
|
|
|
|
public string ChannelId { get; init; } = string.Empty;
|
|
|
|
public Guid? ProviderId { get; init; }
|
|
}
|