All checks were successful
		
		
	
	Build blog docker image / Build-Blog-Image (push) Successful in 1m26s
				
			Reviewed-on: #5
		
			
				
	
	
		
			13 lines
		
	
	
		
			278 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			278 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using YaeBlog.Core.Models;
 | |
| 
 | |
| namespace YaeBlog.Core.Abstractions;
 | |
| 
 | |
| public interface IEssayScanService
 | |
| {
 | |
|     public Task<BlogContents> ScanContents();
 | |
| 
 | |
|     public Task SaveBlogContent(BlogContent content, bool isDraft = true);
 | |
| 
 | |
|     public Task<ImageScanResult> ScanImages();
 | |
| }
 |