mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-26 18:13:32 -04:00
20 lines
550 B
C#
20 lines
550 B
C#
using Cleanuparr.Domain.Enums;
|
|
using Cleanuparr.Infrastructure.Features.Notifications.Models;
|
|
|
|
namespace Cleanuparr.Api.Features.Notifications.Contracts.Responses;
|
|
|
|
public sealed record NotificationProviderResponse
|
|
{
|
|
public Guid Id { get; init; }
|
|
|
|
public string Name { get; init; } = string.Empty;
|
|
|
|
public NotificationProviderType Type { get; init; }
|
|
|
|
public bool IsEnabled { get; init; }
|
|
|
|
public NotificationEventFlags Events { get; init; } = new();
|
|
|
|
public object Configuration { get; init; } = new();
|
|
}
|