10 lines
225 B
Python
10 lines
225 B
Python
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 |