refactor: restructure project to classic MVC pattern
This commit is contained in:
10
src/domain/models/Project.ts
Normal file
10
src/domain/models/Project.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
export interface Project {
|
||||
id: string;
|
||||
title: string;
|
||||
description?: string;
|
||||
image?: string;
|
||||
technologies?: string[];
|
||||
features?: string[];
|
||||
demo?: string;
|
||||
repository?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user