mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-22 01:12:24 +00:00
10 lines
211 B
C#
10 lines
211 B
C#
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace FSO.Server.Api.Core.Services
|
|||
|
{
|
|||
|
public interface IUpdateUploader
|
|||
|
{
|
|||
|
Task<string> UploadFile(string destPath, string fileName, string groupName);
|
|||
|
}
|
|||
|
}
|