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.
PocketBook/Sources/VMWrapper/ManagerViewModel.cs

19 lines
495 B

using Model;
namespace VMWrapper
{
public class ManagerViewModel
{
public FilterViewModel filterVm { get; }
public SearchBarViewModel searchBar { get; }
public BookViewModel bookVm { get; }
public ManagerViewModel(FilterViewModel filterVm, SearchBarViewModel searchBar, BookViewModel bookVm)
{
this.filterVm = filterVm;
this.searchBar = searchBar;
this.bookVm = bookVm;
}
}
}