mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-26 06:39:45 -05:00
13 lines
417 B
C#
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
|
|
{
|
|
}
|