Files
YouTube-Manager/Manager.App/Models/Settings/DownloadSettings.cs
2025-08-18 01:08:11 +02:00

10 lines
244 B
C#

using System.ComponentModel.DataAnnotations;
namespace Manager.App.Models.Settings;
public class DownloadSettings
{
[ConfigurationKeyName("MaxConcurrentDownloads")]
[Range(-1, 20)]
public int MaxConcurrentDownloads { get; set; }
}