Source code for app.portfolio.models.annotation.annotation_schema

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

from abc import ABCMeta

from ..entity import EntitySchemaBase


[docs] class AnnotationSchema(EntitySchemaBase, metaclass=ABCMeta): pass