diff --git a/Yavsc/Models/Market/IUnit.cs b/Yavsc/Models/IUnit.cs similarity index 85% rename from Yavsc/Models/Market/IUnit.cs rename to Yavsc/Models/IUnit.cs index fe95b18e..7435e235 100644 --- a/Yavsc/Models/Market/IUnit.cs +++ b/Yavsc/Models/IUnit.cs @@ -1,7 +1,7 @@ -namespace Yavsc.Models.Market { +namespace Yavsc.Models { public interface IUnit { string Name { get; } bool CanConvertFrom(IUnit other); VType ConvertFrom (IUnit other, VType orgValue) ; } -} \ No newline at end of file +}