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.
59 lines
1.0 KiB
59 lines
1.0 KiB
using Model;
|
|
using PersonalMVVMToolkit;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ViewModels
|
|
{
|
|
public class BookVM : BaseViewModel<Book>
|
|
{
|
|
|
|
#region Fields
|
|
|
|
private Book model;
|
|
|
|
#endregion
|
|
|
|
#region Properties
|
|
|
|
public Book Model
|
|
{
|
|
get => model;
|
|
set => model = value;
|
|
}
|
|
|
|
public string Title
|
|
{
|
|
get => model.Title;
|
|
set
|
|
{
|
|
model.Title = value;
|
|
}
|
|
}
|
|
|
|
//public float? UserRating
|
|
//{
|
|
// get => Model?.UserRating;
|
|
// set
|
|
// {
|
|
// if (Model == null) return;
|
|
// SetProperty(Model.UserRating = value, rating => Model.UserRating);
|
|
// }
|
|
//}
|
|
|
|
#endregion
|
|
|
|
#region Constructor
|
|
|
|
public BookVM(Book model)
|
|
{
|
|
Model = model;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|