mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-06-10 23:06:04 -04:00
15 lines
377 B
C#
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
|
|
}
|