refactoring

This commit is contained in:
Paul Schneider 2016-08-30 23:04:25 +02:00
commit 00232a4b03
3 changed files with 46 additions and 53 deletions

View file

@ -0,0 +1,7 @@
namespace Yavsc.Models.Market {
public interface IUnit<VType> {
string Name { get; }
bool CanConvertFrom(IUnit<VType> other);
VType ConvertFrom (IUnit<VType> other, VType orgValue) ;
}
}