File size: 267 Bytes
e7cf451 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
from pydantic import BaseModel
from typing import List
class MatchAnalysisDTO(BaseModel):
name: str
score: str
justification: str
class ConstraintAnalysisDTO(BaseModel):
name: str
weight: str
score: str
matches: List[MatchAnalysisDTO]
|