PamGram/modules/action_log/models.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
513 B
Python
Raw Normal View History

2024-06-17 16:29:31 +00:00
from datetime import datetime, timedelta
from pydantic import BaseModel
from simnet.models.starrail.self_help import StarRailSelfHelpActionLog
class ActionLogPair(BaseModel):
start: StarRailSelfHelpActionLog
end: StarRailSelfHelpActionLog
@property
def start_time(self) -> datetime:
return self.start.time
@property
def end_time(self) -> datetime:
return self.end.time
@property
def duration(self) -> timedelta:
return self.end.time - self.start.time