mysimulation/server/FSO.Server.Api.Core/Services/IUpdateUploader.cs

10 lines
211 B
C#
Raw Permalink Normal View History

using System.Threading.Tasks;
namespace FSO.Server.Api.Core.Services
{
public interface IUpdateUploader
{
Task<string> UploadFile(string destPath, string fileName, string groupName);
}
}