refactoring

vnext
Paul Schneider 8 years ago
parent b3b536c8c0
commit 0e3046fb8c
7 changed files with 9 additions and 10 deletions

@ -1,17 +1,15 @@
using BookAStar.Data;
using BookAStar.Interfaces;
using BookAStar.Model;
using BookAStar.Model.Social;

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using XLabs.Forms.Mvvm;
namespace BookAStar.ViewModels
{
class BookQueryViewModel : XLabs.Forms.Mvvm.ViewModel, IBookQueryData
using Data;
using Interfaces;
using Model;
using Model.Social;
class BookQueryViewModel : ViewModel, IBookQueryData
{
public BookQueryViewModel()
{

@ -9,6 +9,7 @@ namespace BookAStar.ViewModels
{
class UserLoginViewModel : ViewModel
{
public string UserName { get; set; }
public string Password { get; set; }
}
}
Loading…