mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-04 14:27:52 -05:00
13 lines
423 B
C#
13 lines
423 B
C#
namespace Common.Configuration.DTOs.IgnoredDownloads;
|
|
|
|
/// <summary>
|
|
/// DTO for updating IgnoredDownloads configuration
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This class inherits from IgnoredDownloadsConfigDto without adding any additional fields
|
|
/// since IgnoredDownloads doesn't have sensitive data fields that need special handling
|
|
/// </remarks>
|
|
public class IgnoredDownloadsConfigUpdateDto : IgnoredDownloadsConfigDto
|
|
{
|
|
}
|