using System; using System.Collections.Generic; using System.Text; namespace Tdo.Common.TdoTypes{ /// <summary> /// Interface for all Numeric Tdo Types /// </summary> [CLSCompliant(true)] public interface ITdoNumericColumn : ITdoNoBlobColumn { } }