Mercurial > silverbladetech
annotate SilverlightValidation/SilverlightValidation.PL/Interfaces/IUserViewModel.cs @ 108:b728c44d9c61
StatLight added to repo
author | stevenhollidge <stevenhollidge@hotmail.com> |
---|---|
date | Sun, 06 May 2012 16:15:42 +0100 |
parents | d0c2cac12376 |
children |
rev | line source |
---|---|
98 | 1 using System; |
2 using System.ComponentModel; | |
3 using System.Windows.Input; | |
4 | |
5 namespace SilverlightValidation.Interfaces | |
6 { | |
7 public interface IUserViewModel : INotifyDataErrorInfo, INotifyPropertyChanged, IUserModel | |
8 { | |
9 bool IsChanged { get; } | |
10 ICommand OkCommand { get; set; } | |
11 ICommand CancelCommand { get; set; } | |
12 } | |
13 } |