Spaces:
Running
on
Zero
Running
on
Zero
File size: 228 Bytes
1f074d8 |
1 2 3 4 5 6 7 8 9 10 11 12 |
from dataclasses import dataclass
@dataclass
class User:
id: int
name: str
email: str
def __init__(self, id: int, name: str, email: str):
self.id = id
self.name = name
self.email = email |