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.

31 lines
793 B

using GalaSoft.MvvmLight;
using GalaSoft.MvvmLight.Command;
using Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace Audit.ViewModel
{
public class LogViewModel : ViewModelBase
{
// public AuditData AuditData { get; set; } = AuditData.Instance.Useraccount;
// public UserAccount UserAccount { get; private set; } = AuditData.Instance.Useraccount;
//登录命令绑定
/* public RelayCommand LogCommand
{
get
{
return new RelayCommand(() =>
{
});
}
}
*/
}
}