選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

participant.py 133B

123456789
  1. from pydantic import BaseModel
  2. class Participant(BaseModel):
  3. name: str
  4. def __hash__(self):
  5. return hash(self.name)