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

45 lines
911 B
C#

using System.Collections.Generic;
using Prism.Mvvm;
namespace DownKyi.ViewModels.PageViewModels;
public class VideoQuality : BindableBase
{
private int _quality;
public int Quality
{
get => _quality;
set => SetProperty(ref _quality, value);
}
private string _qualityFormat;
public string QualityFormat
{
get => _qualityFormat;
set => SetProperty(ref _qualityFormat, value);
}
private List<string> _videoCodecList;
public List<string> VideoCodecList
{
get => _videoCodecList;
set => SetProperty(ref _videoCodecList, value);
}
private string _selectedVideoCodec;
public string SelectedVideoCodec
{
get => _selectedVideoCodec;
set
{
if (value != null)
{
SetProperty(ref _selectedVideoCodec, value);
}
}
}
}