forked from ddrilling/AsbCloudServer
13 lines
396 B
C#
13 lines
396 B
C#
using System.IO;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface IGoogleDriveService
|
|
{
|
|
string GetFileWebLink(string idFile);
|
|
string CreateFolder(string folderName);
|
|
void CreatePublicPermissionForFile(string idFile);
|
|
string UploadFile(Stream file, string fileName, string fileMime, string fileDescription);
|
|
void DeleteFile(string fileId);
|
|
}
|
|
} |