mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
21 lines
487 B
C#
21 lines
487 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace VideoLinkDownloader.Core
|
|
{
|
|
public class VideoDownloaderConfig
|
|
{
|
|
public bool Danmaku { get; set; }
|
|
public int Parts { get; set; }
|
|
public string OutputFolder { get; set; }
|
|
|
|
public static VideoDownloaderConfig Default { get; } = new VideoDownloaderConfig
|
|
{
|
|
Danmaku = false,
|
|
Parts = 12,
|
|
OutputFolder = ".",
|
|
};
|
|
}
|
|
}
|