mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
14 lines
602 B
C#
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;
|
|
} |