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,11 +7,11 @@ public class DisplayFileNamePart : BindableBase
{
public FileNamePart 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);
}
}