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

13 lines
417 B
C#

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