10 lines
244 B
C#
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; }
|
|
} |