from ...base_model import BaseEbarimtModel
[docs]
class BranchInfo(BaseEbarimtModel):
branch_code: str
branch_name: str
sub_branch_code: str
sub_branch_name: str
[docs]
class GetDistrictCodeResponse(BaseEbarimtModel):
msg: str
status: int
data: list[BranchInfo]