mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2025-01-03 08:32:45 +01:00
15 lines
340 B
C#
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);
|
|
}
|
|
}
|