Table of Contents

Interface IIdentifier

Namespace
LibGFX.Core
Assembly
LibGFX.dll

Defines a contract for objects that have a unique identifier and a name.

public interface IIdentifier

Remarks

Implementations of this interface can be used to represent entities that require both a human-readable name and a globally unique identifier. This is commonly used for objects that need to be referenced or tracked across different systems or contexts.

Properties

ID

Gets or sets the unique identifier for the entity.

Guid ID { get; }

Property Value

Guid

Name

Gets or sets the name associated with the object.

string Name { get; }

Property Value

string