using Dpz.Core.Service.Mediator.Features.Article.Contracts;

namespace Dpz.Core.Web.Models;

public record ArticleSearchModel(
    string? Keyword,
    List<ArticleResponseSearchResultResponse> Results,
    List<string> Tags
);
评论加载中...