Mercurial > silverbladetech
annotate SilverlightValidation/SilverlightValidation.PL/Interfaces/IUserViewModel.cs @ 121:8f94475d3146 tip
final code
author | stevenh7776 |
---|---|
date | Thu, 31 May 2012 15:35:26 +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 } |