8 lines
110 B
Python
Executable file
8 lines
110 B
Python
Executable file
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class Project:
|
|
name: str
|
|
description: str
|
|
url: str
|