NBloodServerSupervisor/WebInterface/Services/ICustomMapService.cs
2020-02-12 16:31:11 +00:00

15 lines
340 B
C#

using Microsoft.AspNetCore.Http;
using System;
using System.Collections.Generic;
using System.Linq;
namespace WebInterface.Services
{
public interface ICustomMapService
{
IReadOnlyList<string> ListCustomMaps();
byte[] GetCustomMapBytes(string map);
string StoreTempCustomMap(IFormFile formFile);
}
}