Add project files.
This commit is contained in:
16
Core.Blueprint.Storage/Adapters/BlobStorageFolder.cs
Normal file
16
Core.Blueprint.Storage/Adapters/BlobStorageFolder.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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<BlobStorageFolder> SubFolders { get; set; } = [];
|
||||
public List<BlobStorageFilesAdapter> Files { get; set; } = [];
|
||||
}
|
||||
public record BlobStorageFilesAdapter(string Content, string Name, string ContentType, string DownloadUrl);
|
||||
}
|
||||
Reference in New Issue
Block a user