Coverage for heritrace / models.py: 100%
6 statements
« prev ^ index » next coverage.py v7.13.4, created at 2026-03-21 12:56 +0000
« prev ^ index » next coverage.py v7.13.4, created at 2026-03-21 12:56 +0000
1# SPDX-FileCopyrightText: 2024-2025 Arcangelo Massari <arcangelo.massari@unibo.it>
2#
3# SPDX-License-Identifier: ISC
5from flask_login import UserMixin
8class User(UserMixin):
9 def __init__(self, id, name, orcid):
10 self.id = id
11 self.name = name
12 self.orcid = orcid