ba8b493a31
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
11 lines
211 B
Python
11 lines
211 B
Python
"""Storefront record — the §6.3 entity as the domain returns it."""
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class Storefront:
|
|
id: int
|
|
name: str
|