1namespace MVPtoMVVM.mvvm.viewmodels 2{ 3 public interface IValidation 4 { 5 bool IsValid { get; } 6 string Message { get; } 7 } 8}