13 lines
194 B
Python
13 lines
194 B
Python
|
|
from pydantic import BaseModel
|
|
|
|
from ..models.unit_area import UnitArea
|
|
|
|
|
|
class SurfaceArea(BaseModel):
|
|
"""The surface area response."""
|
|
|
|
output_unit: UnitArea
|
|
|
|
surface_area: float
|