sledgemapper/Sledgemapper/IMapApi.cs
2020-11-07 23:42:34 +00:00

16 lines
318 B
C#

using Refit;
using Sledgemapper.Shared.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Sledgemapper
{
public interface IMapApi
{
[Post("/tile")]
Task NewTile([Body] Tile tile, string sessionName);
}
}