using Autodesk.Forge.Model; using AriaConcept.Controllers; using System.Collections.Generic; using System.IO; using System.Threading.Tasks; namespace AriaConcept.Interfaces { public interface IForgeOSSService { Task EnsureBucketExists(string bucketKey); Task> GetAllBuckets(string id); Task> GetObjects(); Task UploadModel(string objectName, Stream content, long contentLength); } }