网站首页 网站源码
website
站点相关全部源代码,隐藏了一些关于服务器的信息
using System.Collections.Generic;
using Dpz.Core.Public.Entity.V4;
using Dpz.Core.Public.ViewModel.Response;
using MediatR;

namespace Dpz.Core.Public.ViewModel.RequestEvent;

public class ArticleSearchRequest : IRequest<List<ArticleSearchResultResponse>>
{
    public IAsyncEnumerable<Article> Articles { get; set; }

    public string Pattern { get; set; }
}
loading