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