sledgemapper/Sledgemapper/IMapApi.cs
2020-11-07 23:37:08 +00:00

16 lines
322 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("/map/tile")]
Task NewTile([Body] Tile tile, string sessionName);
}
}