Files
downkyicore/DownKyi.Core/Settings/Models/BasicSettings.cs
2023-11-25 21:59:48 +08:00

14 lines
602 B
C#

namespace DownKyi.Core.Settings.Models;
/// <summary>
/// 基本
/// </summary>
public class BasicSettings
{
public AfterDownloadOperation AfterDownload { get; set; } = AfterDownloadOperation.NOT_SET;
public AllowStatus IsListenClipboard { get; set; } = AllowStatus.NONE;
public AllowStatus IsAutoParseVideo { get; set; } = AllowStatus.NONE;
public ParseScope ParseScope { get; set; } = ParseScope.NOT_SET;
public AllowStatus IsAutoDownloadAll { get; set; } = AllowStatus.NONE;
public DownloadFinishedSort DownloadFinishedSort { get; set; } = DownloadFinishedSort.NOT_SET;
}