mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-16 01:38:02 -05:00
13 lines
399 B
C#
13 lines
399 B
C#
namespace Common.Configuration.DTOs.QueueCleaner;
|
|
|
|
/// <summary>
|
|
/// DTO for updating QueueCleaner configuration
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This class inherits from QueueCleanerConfigDto without adding any additional fields
|
|
/// since QueueCleaner doesn't have sensitive data fields that need special handling
|
|
/// </remarks>
|
|
public class QueueCleanerConfigUpdateDto : QueueCleanerConfigDto
|
|
{
|
|
}
|