Added lutum data, started herbicide service.

This commit is contained in:
2020-04-06 13:37:11 +02:00
parent e01ac51095
commit 92a8d9573c
8 changed files with 103 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
using System.Collections.Generic;
using System.Threading.Tasks;
using FarmmapsApi.Models;
namespace FarmmapsApiSamples
{
public interface ITestFlow
{
Task TestFlow(List<UserRoot> roots);
}
}