mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
33 lines
629 B
C#
33 lines
629 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);
|
|
}
|
|
} |