mirror of
https://github.com/leiurayer/downkyi.git
synced 2025-03-22 23:30:11 +08:00
37 lines
895 B
C#
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);
|
|
}
|
|
}
|
|
}
|