INamed

Interface for data objects that have human-readable names.

Description

The INamed interface is used to define data objects containing a human-readable name.

Fields

name

The object’s humand-readable name.

name: str

Examples

class MyData(IIdentifiable, INamed):
    id = None
    name = None