mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-19 19:28:02 -05:00
13 lines
411 B
C#
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
|
|
{
|
|
}
|