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

39 lines
695 B
C#

using DownKyi.Images;
using Prism.Mvvm;
namespace DownKyi.ViewModels.PageViewModels;
public class SpaceItem : BindableBase
{
private bool _isEnabled;
public bool IsEnabled
{
get => _isEnabled;
set => SetProperty(ref _isEnabled, value);
}
private VectorImage image;
public VectorImage Image
{
get => image;
set => SetProperty(ref image, value);
}
private string title;
public string Title
{
get => title;
set => SetProperty(ref title, value);
}
private string subtitle;
public string Subtitle
{
get => subtitle;
set => SetProperty(ref subtitle, value);
}
}