mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-28 23:52:07 -05:00
13 lines
373 B
C#
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; }
|
|
}
|