8 lines
111 B
Python
8 lines
111 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class Project:
|
|
name: str
|
|
description: str
|
|
link: str
|