namespace Core.Common.Controls
{
public interface IRowValidationResult
{
///
/// Absolute index of the column
///
int ColumnIndex { get; }
///
/// Error text to display
///
string ErrorText { get; }
///
/// State of the row (valid / invalid)
///
bool Valid { get; }
}
}