downkyi/DownKyi/Models/VideoQuality.cs
2021-12-21 01:04:37 +08:00

37 lines
895 B
C#

using Prism.Mvvm;
using System.Collections.Generic;
namespace DownKyi.Models
{
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 => SetProperty(ref selectedVideoCodec, value);
}
}
}