mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
8 lines
182 B
Python
8 lines
182 B
Python
from typing import List, Optional
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class CategorisationTriggerRequest(BaseModel):
|
|
portfolio_id: int
|
|
|
|
plan_priority_order: Optional[List[int]]
|