mirror of
https://github.com/PaiGramTeam/SIMNet.git
synced 2024-11-16 20:10:37 +00:00
21 lines
457 B
Python
21 lines
457 B
Python
"""Starrail Chronicle Base Model."""
|
|
import datetime
|
|
from typing import Optional
|
|
|
|
from simnet.models.base import APIModel
|
|
|
|
|
|
class PartialTime(APIModel):
|
|
"""Partial time model."""
|
|
|
|
year: int
|
|
month: int
|
|
day: int
|
|
hour: int
|
|
minute: int
|
|
second: Optional[int] = None
|
|
|
|
@property
|
|
def datetime(self) -> datetime.datetime:
|
|
return datetime.datetime(self.year, self.month, self.day, self.hour, self.minute, self.second or 0)
|