10 lines
186 B
Python
10 lines
186 B
Python
from typing import List
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class NameParts(BaseModel):
|
|
first_names: List[str]
|
|
initials: List[str]
|
|
infixes: List[str]
|
|
last_names: List[str]
|