2024-08-23 20:24:32 +08:00
|
|
|
|
using YaeBlog.Core.Models;
|
|
|
|
|
|
|
|
|
|
namespace YaeBlog.Core.Abstractions;
|
|
|
|
|
|
|
|
|
|
public interface IEssayScanService
|
|
|
|
|
{
|
|
|
|
|
public Task<BlogContents> ScanContents();
|
|
|
|
|
|
|
|
|
|
public Task SaveBlogContent(BlogContent content, bool isDraft = true);
|
2024-08-25 15:38:58 +08:00
|
|
|
|
|
|
|
|
|
public Task<ImageScanResult> ScanImages();
|
2024-08-23 20:24:32 +08:00
|
|
|
|
}
|