Add Snippet
from dataclasses import dataclass
@dataclass
class Snippet:
id: str
name: str
description: str
This automagically gives you a class with getters and setters for the fields. It also generates classes like __repr__ and __eq__Use up/down arrow keys or scroll to navigate