first push
This commit is contained in:
10
backend/app/models/project.py
Normal file
10
backend/app/models/project.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from pydantic import BaseModel
|
||||
from typing import List, Optional
|
||||
|
||||
|
||||
class ProjectRecord(BaseModel):
|
||||
id: Optional[str] = None
|
||||
title: str
|
||||
summary: str
|
||||
tags: List[str] = []
|
||||
repository_url: Optional[str] = None
|
||||
Reference in New Issue
Block a user