refactor: restructure project to classic MVC pattern
This commit is contained in:
10
src/domain/models/Experience.ts
Normal file
10
src/domain/models/Experience.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
export interface Experience {
|
||||
id: string;
|
||||
company: string;
|
||||
position: string;
|
||||
period: string;
|
||||
location?: string;
|
||||
description?: string;
|
||||
technologies?: string[];
|
||||
achievements?: string[];
|
||||
}
|
||||
Reference in New Issue
Block a user