forked from FarmMaps/FarmMapsApiClient
11 lines
211 B
C#
11 lines
211 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using FarmmapsApi.Models;
|
|
|
|
namespace FarmmapsApiSamples
|
|
{
|
|
public interface ITestFlow
|
|
{
|
|
Task TestFlow(List<UserRoot> roots);
|
|
}
|
|
} |