namespace Yavsc.Models { public interface IUnit { string Name { get; } bool CanConvertFrom(IUnit other); VType ConvertFrom (IUnit other, VType orgValue) ; } }