2002-05-07 Rodrigo Moya <rodrigo@ximian.com>
[mono.git] / mcs / class / System / System.ComponentModel / IDataErrorInfo.cs
1 //
2 // System.ComponentModel.IDataErrorInfo.cs
3 //
4 // (C) 2002 Ximian, Inc.  http://www.ximian.com
5 //
6 // Authors:
7 //   Rodrigo Moya (rodrigo@ximian.com)
8 //
9
10 namespace System.ComponentModel
11 {
12         public interface IDataErrorInfo
13         {
14                 string Error { get; }
15
16                 string this[string columnName] { get; }
17         }
18 }