9 lines
140 B
Python
9 lines
140 B
Python
|
from dataclasses import dataclass
|
||
|
|
||
|
# tag::CLUBMEMBER[]
|
||
|
@dataclass
|
||
|
class ClubMember:
|
||
|
name: str
|
||
|
guests: list = []
|
||
|
# end::CLUBMEMBER[]
|