mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-03 19:40:16 -04:00
18 lines
564 B
Python
18 lines
564 B
Python
from pydantic import BaseModel, Field
|
|
from enum import Enum
|
|
from typing import List
|
|
from datetime import datetime
|
|
from typing import Optional
|
|
from .enum_for_models import UserTypeEnum, ProgramTypeEnum
|
|
|
|
|
|
class User(BaseModel):
|
|
id: int | None = None
|
|
username: str = Field(..., description="The username of the user")
|
|
email: str = Field(..., description="The e-mail of the user")
|
|
experience: int = Field(..., description="Years of Experience of the User")
|
|
group: str
|
|
programtype: List[str]
|
|
usertype: str
|
|
created_at: Optional[datetime]
|