mirror of https://github.com/leiurayer/downkyi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
725 B
32 lines
725 B
using Prism.Mvvm;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DownKyi.Models
|
|
{
|
|
public class VideoSection : BindableBase
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
private string title;
|
|
public string Title
|
|
{
|
|
get { return title; }
|
|
set { SetProperty(ref title, value); }
|
|
}
|
|
|
|
private bool isSelected;
|
|
public bool IsSelected
|
|
{
|
|
get { return isSelected; }
|
|
set { SetProperty(ref isSelected, value); }
|
|
}
|
|
|
|
private List<VideoPage> videoPages;
|
|
public List<VideoPage> VideoPages
|
|
{
|
|
get { return videoPages; }
|
|
set { SetProperty(ref videoPages, value); }
|
|
}
|
|
}
|
|
}
|