implement more social links, change naming of e.V.

This commit is contained in:
David Rodenkirchen
2024-06-06 17:24:20 +00:00
parent 5dee350c6a
commit 09ff8c78a9
19 changed files with 152 additions and 53 deletions
+14
View File
@@ -0,0 +1,14 @@
from dataclasses import dataclass, field
from pathlib import Path
from typing import Optional
from ..models import SocialLink
@dataclass
class MemberInfo:
picture_path: Path
name: str
position: str
entry_date: str
socials: list[SocialLink] = field(default_factory=list)