mirror of
https://github.com/PaiGramTeam/EnkaNetwork.py.git
synced 2024-11-16 11:52:18 +00:00
16 lines
346 B
Python
16 lines
346 B
Python
from pydantic import BaseModel
|
|
|
|
from ..enum import ProfileRank
|
|
from .build import Builds
|
|
|
|
class EnkaProfile(BaseModel):
|
|
bio: str = ''
|
|
level: ProfileRank = ProfileRank.TIER_1
|
|
signup_state: int = 0
|
|
image_url: str = ''
|
|
|
|
class ProfileOwner(BaseModel):
|
|
hash: str
|
|
username: str
|
|
profile: EnkaProfile
|
|
builds: Builds = None |