9 lines
125 B
Python
9 lines
125 B
Python
from pydantic import BaseModel
|
|
|
|
class Targets(BaseModel):
|
|
neg_2_5: int
|
|
neg_1_5: int
|
|
neg_0_5: int
|
|
_0_5: int
|
|
_1: int
|