7 lines
223 B
C#
7 lines
223 B
C#
namespace Yavsc.Models.Market {
|
|
public interface IUnit<VType> {
|
|
string Name { get; }
|
|
bool CanConvertFrom(IUnit<VType> other);
|
|
VType ConvertFrom (IUnit<VType> other, VType orgValue) ;
|
|
}
|
|
} |