main
1using System;
2using System.ComponentModel;
3using System.Linq.Expressions;
4
5namespace solidware.financials.windows.ui.presenters.validation
6{
7 public interface INotification<T> : IDataErrorInfo
8 {
9 string this[Expression<Func<T, object>> property] { get; }
10 }
11}