using Bunny.Dao.Models.System;
namespace Bunny.Service.IService;
public interface IBlogService
{
///
/// 添加Blog
///
///
void AddBlog(Blog dto);
///
/// 查询BLog
///
///
List QueryBlog();
///
/// 更新Blog内容
///
///
void UpdateBlog(Blog dto);
///
/// 删除BLog
///
///
void DeleteBlog(string id);
}