CategoricalTagEntry

AUTO-GENERATED FILE – DO NOT EDIT MANUALLY

This page documents the supported public API surface only. Private, internal, benchmark, test, and implementation-detail types are intentionally omitted.

Declaration

1
2
3
4
5
public record CategoricalTagEntry(
    string Id,
    string DisplayName,
    string? Description = null
)

Summary

Engine-agnostic categorical tag used to classify placeable entries and sequences.

Parameters

NameDescription
IdStable tag identifier.
DisplayNameDisplay label shown in UI.
DescriptionOptional tag description.

Metadata

Namespace: GridPlacement.Core.Catalog

Source File: cs/Core/Catalog/CategoricalTagEntry.cs

Assembly: GridPlacement.Core

Type: record

Implements

  • IEquatable<CategoricalTagEntry>

Constructors

CategoricalTagEntry

1
2
3
4
5
public CategoricalTagEntry(
    string Id,
    string DisplayName,
    string? Description = null
)

Engine-agnostic categorical tag used to classify placeable entries and sequences.

Parameters

NameDescription
IdStable tag identifier.
DisplayNameDisplay label shown in UI.
DescriptionOptional tag description.

Properties

Description

1
public string? Description { get; init; }

DisplayName

1
public string DisplayName { get; init; }

Id

1
public string Id { get; init; }