yavsc/Yavsc/Models/IUnit.cs

8 lines
217 B
C#

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