section.py 250 B

123456789101112131415161718
  1. from typing import Protocol
  2. class Section(Protocol):
  3. @property
  4. def name(self) -> str:
  5. ...
  6. @property
  7. def title(self) -> str:
  8. ...
  9. def intro(self) -> None:
  10. ...
  11. def content(self) -> None:
  12. ...