mirror of
https://github.com/PaiGramTeam/SIMNet.git
synced 2024-11-17 04:18:04 +00:00
19 lines
378 B
Python
19 lines
378 B
Python
|
"""Starrail Chronicle Base Model."""
|
||
|
import datetime
|
||
|
|
||
|
from simnet.models.base import APIModel
|
||
|
|
||
|
|
||
|
class PartialTime(APIModel):
|
||
|
"""Partial time model."""
|
||
|
|
||
|
year: int
|
||
|
month: int
|
||
|
day: int
|
||
|
hour: int
|
||
|
minute: int
|
||
|
|
||
|
@property
|
||
|
def datetime(self) -> datetime.datetime:
|
||
|
return datetime.datetime(self.year, self.month, self.day, self.hour, self.minute)
|