Files
downkyicore/DownKyi/ViewModels/PageViewModels/VideoSection.cs
yaobiao131 f744d264e0 fix: 优化项目代码
1、修复部分字幕下载问题
2、修复自定义aria2设置出错问题
2025-03-19 21:54:14 +08:00

33 lines
638 B
C#

using System.Collections.Generic;
using Prism.Mvvm;
namespace DownKyi.ViewModels.PageViewModels;
public class VideoSection : BindableBase
{
public long Id { get; set; }
private string _title;
public string Title
{
get => _title;
set => SetProperty(ref _title, value);
}
private bool _isSelected;
public bool IsSelected
{
get => _isSelected;
set => SetProperty(ref _isSelected, value);
}
private List<VideoPage> _videoPages;
public List<VideoPage> VideoPages
{
get => _videoPages;
set => SetProperty(ref _videoPages, value);
}
}