mirror of
https://github.com/farcasclaudiu/MartianRobots.git
synced 2026-06-22 05:01:14 +03:00
10 lines
200 B
C#
10 lines
200 B
C#
using MartianRobotsSolver;
|
|
|
|
namespace MartianRobots.Api.Data
|
|
{
|
|
public interface IRobotSolutionStorage
|
|
{
|
|
void Add(RobotSolution solution);
|
|
List<RobotSolution> List();
|
|
}
|
|
} |