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

13 lines
411 B
C#

namespace Common.Configuration.DTOs.ContentBlocker;
/// <summary>
/// DTO for updating ContentBlocker configuration
/// </summary>
/// <remarks>
/// This class inherits from ContentBlockerConfigDto without adding any additional fields
/// since ContentBlocker doesn't have sensitive data fields that need special handling
/// </remarks>
public class ContentBlockerConfigUpdateDto : ContentBlockerConfigDto
{
}