23 lines
546 B
C#
23 lines
546 B
C#
|
|
namespace Application.Dto.Icon;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 图标候选对象
|
|||
|
|
/// </summary>
|
|||
|
|
public record IconCandidateDto
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 图标集名称
|
|||
|
|
/// </summary>
|
|||
|
|
public string CollectionName { get; init; } = string.Empty;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 图标名称
|
|||
|
|
/// </summary>
|
|||
|
|
public string IconName { get; init; } = string.Empty;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 图标标识符(格式:{collectionName}:{iconName},如"mdi:home")
|
|||
|
|
/// </summary>
|
|||
|
|
public string IconIdentifier { get; init; } = string.Empty;
|
|||
|
|
}
|