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

13 lines
373 B
C#

namespace Common.Configuration.DTOs.Notification;
/// <summary>
/// DTO for updating Notifiarr configuration (includes sensitive data fields)
/// </summary>
public class NotifiarrConfigUpdateDto : NotifiarrConfigDto
{
/// <summary>
/// API Key for Notifiarr authentication (only included in update DTO)
/// </summary>
public string? ApiKey { get; set; }
}