Files
wiggleverse-ecomm/backend/app/domains/storefronts/models.py
T

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