12 lines
199 B
Python
12 lines
199 B
Python
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
|
|
class SubscriptionTierFeature(BaseModel):
|
|
"""A subscription tier feature."""
|
|
|
|
info: str
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|