mirror of
https://github.com/wowlikon/LiB.git
synced 2026-02-04 20:34:38 +00:00
10 lines
304 B
Python
10 lines
304 B
Python
"""Модуль перечислений (Enums)"""
|
|
from enum import Enum
|
|
|
|
class BookStatus(str, Enum):
|
|
"""Статусы книги"""
|
|
ACTIVE = "active"
|
|
BORROWED = "borrowed"
|
|
RESERVED = "reserved"
|
|
RESTORATION = "restoration"
|
|
WRITTEN_OFF = "written_off" |