Files
Cleanuparr/code/Common/Configuration/DTOs/Notification/NotifiarrConfigDto.cs
2025-05-30 15:19:04 +03:00

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
}