1 2 3 4 5 6 7 8
namespace DSALib.Auxiliary.Calculator { /// <summary> /// Object has to be able to return an integer as it's value /// </summary> public interface ISolvable { int Solve(); } }