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