mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
- feat(remission-list): Zwischencommit - feat(ui-input-controls): Adjusted Dropdown Styling and Added Droption Option Disable Class, Refs: #4769 - feat(remission): implement remission list feature shell and category select - Merge branch 'develop' into feature/4769-Remission-Liste - Merge branch 'develop' into feature/4769-Remission-Liste - feat(remission-list, remission-data-access): implement new remission data access layer and update remission list integration
21 lines
765 B
TypeScript
21 lines
765 B
TypeScript
/* tslint:disable */
|
|
import { EntityDTOBaseOfBranchDTOAndIBranch } from './entity-dtobase-of-branch-dtoand-ibranch';
|
|
import { AddressDTO } from './address-dto';
|
|
import { BranchType } from './branch-type';
|
|
import { EntityDTOContainerOfLabelDTO } from './entity-dtocontainer-of-label-dto';
|
|
import { EntityDTOContainerOfBranchDTO } from './entity-dtocontainer-of-branch-dto';
|
|
export interface BranchDTO extends EntityDTOBaseOfBranchDTOAndIBranch{
|
|
address?: AddressDTO;
|
|
branchNumber?: string;
|
|
branchType?: BranchType;
|
|
isDefault?: string;
|
|
isOnline?: boolean;
|
|
isOrderingEnabled?: boolean;
|
|
isShippingEnabled?: boolean;
|
|
key?: string;
|
|
label?: EntityDTOContainerOfLabelDTO;
|
|
name?: string;
|
|
parent?: EntityDTOContainerOfBranchDTO;
|
|
shortName?: string;
|
|
}
|