13 lines
254 B
C#
13 lines
254 B
C#
|
|
namespace Application.Dto.Icon;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 搜索关键字生成请求
|
||
|
|
/// </summary>
|
||
|
|
public record SearchKeywordsRequest
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 分类名称
|
||
|
|
/// </summary>
|
||
|
|
public string CategoryName { get; init; } = string.Empty;
|
||
|
|
}
|