14 lines
244 B
Python
14 lines
244 B
Python
"""Provider API Key model."""
|
|
from dataclasses import dataclass
|
|
from typing import Optional
|
|
|
|
|
|
@dataclass
|
|
class ProviderKey:
|
|
"""API key for a provider."""
|
|
id: int
|
|
provider_id: int
|
|
key: str
|
|
is_active: bool
|
|
created_at: str
|