Files
HopFrame/src/HopFrame.Web/Services/IFileService.cs
2025-02-28 12:15:32 +01:00

11 lines
219 B
C#

using Microsoft.AspNetCore.Components.Forms;
namespace HopFrame.Web.Services;
public interface IFileService {
public Task DownloadFile(string name, byte[] data);
public Task<IBrowserFile> UploadFile();
}