9 lines
185 B
Python
9 lines
185 B
Python
from typing import Optional
|
|
|
|
from src.model.db.base_db_model import BaseDBModel
|
|
|
|
|
|
class InstDivMasterModel(BaseDBModel):
|
|
inst_div_cd: Optional[str]
|
|
inst_div_name: Optional[str]
|