mirror of
https://github.com/home-assistant/core.git
synced 2025-12-21 11:30:03 +00:00
14 lines
268 B
Python
14 lines
268 B
Python
"""Data models for Overseerr integration."""
|
|
|
|
from dataclasses import dataclass
|
|
|
|
from python_overseerr import IssueCount, RequestCount
|
|
|
|
|
|
@dataclass
|
|
class OverseerrData:
|
|
"""Data model for Overseerr coordinator."""
|
|
|
|
requests: RequestCount
|
|
issues: IssueCount
|