10 lines
274 B
C#
10 lines
274 B
C#
using Microsoft.AspNetCore.Components.Forms;
|
|
|
|
namespace BlazorApp1.Handler.Interfaces;
|
|
|
|
public interface IFileHandler
|
|
{
|
|
public Task SaveFile(IBrowserFile file);
|
|
public Task<bool> DeleteTempFile(string filePath);
|
|
public string GetFileReference(string filename);
|
|
} |