blackopsrepl's picture
update
e7cf451
raw
history blame contribute delete
267 Bytes
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]