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

15 lines
377 B
C#

namespace Common.Configuration.DTOs.Notification;
/// <summary>
/// DTO for retrieving Apprise configuration (excludes sensitive data)
/// </summary>
public class AppriseConfigDto : BaseNotificationConfigDto
{
/// <summary>
/// URL of the Apprise API server
/// </summary>
public Uri? Url { get; set; }
// Key is intentionally excluded for security
}