-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodels.py
More file actions
43 lines (35 loc) · 565 Bytes
/
models.py
File metadata and controls
43 lines (35 loc) · 565 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# pylint: disable=R0913
'''
Models for the Resume API. Each class is related to
'''
from dataclasses import dataclass
@dataclass
class Experience:
'''
Experience Class
'''
title: str
company: str
start_date: str
end_date: str
description: str
logo: str
@dataclass
class Education:
'''
Education Class
'''
course: str
school: str
start_date: str
end_date: str
grade: str
logo: str
@dataclass
class Skill:
'''
Skill Class
'''
name: str
proficiency: str
logo: str