mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
fix: 优化项目代码
1、修复部分字幕下载问题 2、修复自定义aria2设置出错问题
This commit is contained in:
@@ -7,27 +7,27 @@ public class VideoSection : BindableBase
|
||||
{
|
||||
public long Id { get; set; }
|
||||
|
||||
private string title;
|
||||
private string _title;
|
||||
|
||||
public string Title
|
||||
{
|
||||
get => title;
|
||||
set => SetProperty(ref title, value);
|
||||
get => _title;
|
||||
set => SetProperty(ref _title, value);
|
||||
}
|
||||
|
||||
private bool isSelected;
|
||||
private bool _isSelected;
|
||||
|
||||
public bool IsSelected
|
||||
{
|
||||
get => isSelected;
|
||||
set => SetProperty(ref isSelected, value);
|
||||
get => _isSelected;
|
||||
set => SetProperty(ref _isSelected, value);
|
||||
}
|
||||
|
||||
private List<VideoPage> videoPages;
|
||||
private List<VideoPage> _videoPages;
|
||||
|
||||
public List<VideoPage> VideoPages
|
||||
{
|
||||
get => videoPages;
|
||||
set => SetProperty(ref videoPages, value);
|
||||
get => _videoPages;
|
||||
set => SetProperty(ref _videoPages, value);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user