Files
yavsc/Yavsc.Server/Models/IUnit.cs
2018-05-02 04:09:51 +02:00

8 lines
217 B
C#

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