mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-31 00:51:38 -05:00
9 lines
278 B
C#
9 lines
278 B
C#
namespace Cleanuparr.Api.Features.Notifications.Contracts.Requests;
|
|
|
|
public record UpdateNotifiarrProviderRequest : UpdateNotificationProviderRequestBase
|
|
{
|
|
public string ApiKey { get; init; } = string.Empty;
|
|
|
|
public string ChannelId { get; init; } = string.Empty;
|
|
}
|