aboutsummaryrefslogtreecommitdiff
path: root/backend/api/api/Interfaces/IFileService.cs
blob: e061dfdb90ac1043ce2d956760cff7f9531a4dd0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
using api.Models;

namespace api.Services
{
    public interface IFileService
    {
        FileModel Create(FileModel file);
        string GetFilePath(string id, string uploaderId);
        public FileModel getFile(string id);
        bool CheckDb();
        string GetFileId(string fullPath);
    }
}