rumine-api-wrapper/db/schemas/UserSchema.py

7 lines
145 B
Python
Raw Normal View History

2024-03-07 14:06:53 +01:00
from pydantic import PositiveInt
from .UUIDSchema import UUIDSchema
class UserSchema(UUIDSchema):
username: str
expiry: PositiveInt = 1