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.
downkyi/DownKyi/ViewModels/PageViewModels/VideoSection.cs

32 lines
717 B

using Prism.Mvvm;
using System.Collections.Generic;
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);
}
}
}