blob: 19b498660766e510eab863cf9a025c132a7e9e18 [file] [log] [blame]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OfficeOpenXml.Utils
{
public interface IValidationResult
{
void IsTrue();
void IsFalse();
}
}