18 lines
415 B
C#
18 lines
415 B
C#
|
|
namespace Application.Dto.Icon;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 更新分类图标请求
|
|||
|
|
/// </summary>
|
|||
|
|
public record UpdateCategoryIconRequest
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 分类ID
|
|||
|
|
/// </summary>
|
|||
|
|
public long CategoryId { get; init; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 图标标识符(格式:{collectionName}:{iconName},如"mdi:home")
|
|||
|
|
/// </summary>
|
|||
|
|
public string IconIdentifier { get; init; } = string.Empty;
|
|||
|
|
}
|