Source code for app.portfolio.models.entity.entity_record

# SPDX-License-Identifier: GPLv3-or-later
# Copyright © 2025 pygaindalf Rui Pinheiro

from typing import TYPE_CHECKING

from ....util.helpers import generics
from .entity_record_base import EntityRecordBase


if TYPE_CHECKING:
    from ...journal.journal import Journal


[docs] class EntityRecord[ T_Journal: Journal, ]( EntityRecordBase[T_Journal], init=False, unsafe_hash=True, ): pass
generics.register_type(EntityRecord)