16 lines
		
	
	
		
			390 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			390 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| using System.Threading.Tasks;
 | |
| 
 | |
| namespace Core.Blueprint.Storage
 | |
| {
 | |
|     public class BlobStorageAdapter
 | |
|     {
 | |
|         public string FileName { get; set; } = string.Empty;
 | |
|         public string Content { get; set; } = string.Empty;
 | |
|         public string DownloadUrl { get; set; } = string.Empty;
 | |
|     }
 | |
| }
 | 
