using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Core.Blueprint.Storage.Adapters { public record BlobStorageFolder { public string Name { get; set; } public List SubFolders { get; set; } = []; public List Files { get; set; } = []; } public record BlobStorageFilesAdapter(string Content, string Name, string ContentType, string DownloadUrl); }