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