mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-21 07:05:48 +01: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
|