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
642 B
32 lines
642 B
using PersonalMVVMToolkit;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ViewModels;
|
|
|
|
namespace LivreLand.ViewModel
|
|
{
|
|
public class FiltrageAuteurVM : BaseViewModel
|
|
{
|
|
#region Properties
|
|
|
|
public NavigatorVM Navigator { get; private set; }
|
|
|
|
public ManagerVM Manager { get; private set; }
|
|
|
|
#endregion
|
|
|
|
#region Constructor
|
|
|
|
public FiltrageAuteurVM(NavigatorVM navigatorVM, ManagerVM managerVM)
|
|
{
|
|
Navigator = navigatorVM;
|
|
Manager = managerVM;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|