mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-06-10 14:55:34 -04:00
15 lines
402 B
C#
15 lines
402 B
C#
namespace Common.Configuration.DTOs.Notification;
|
|
|
|
/// <summary>
|
|
/// DTO for retrieving Notifiarr configuration (excludes sensitive data)
|
|
/// </summary>
|
|
public class NotifiarrConfigDto : BaseNotificationConfigDto
|
|
{
|
|
/// <summary>
|
|
/// Channel ID for Notifiarr notifications
|
|
/// </summary>
|
|
public string? ChannelId { get; set; }
|
|
|
|
// ApiKey is intentionally excluded for security
|
|
}
|