网站首页 网站源码
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 string Keyword { get; set; }
}