16 lines
318 B
C#
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);
|
|
}
|
|
}
|