2017-04-07 00:46:20 +02:00
|
|
|
namespace Yavsc.Models {
|
2016-08-30 23:04:25 +02:00
|
|
|
public interface IUnit<VType> {
|
|
|
|
|
string Name { get; }
|
|
|
|
|
bool CanConvertFrom(IUnit<VType> other);
|
|
|
|
|
VType ConvertFrom (IUnit<VType> other, VType orgValue) ;
|
|
|
|
|
}
|
2017-04-07 00:46:20 +02:00
|
|
|
}
|