fix: 优化项目代码

1、修复部分字幕下载问题
2、修复自定义aria2设置出错问题
This commit is contained in:
yaobiao131
2025-03-13 13:57:06 +08:00
parent 2c349e55c7
commit f744d264e0
175 changed files with 3926 additions and 5563 deletions

View File

@@ -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);
}
}