6 lines
93 B
Python
6 lines
93 B
Python
from dataclasses import dataclass, field
|
|
|
|
|
|
@dataclass
|
|
class Chat:
|
|
message: str = field()
|