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