src/app/shared/models/crush-step.ts
Properties |
Optional item |
Type : number
|
Defined in src/app/shared/models/crush-step.ts:4
|
Optional item_name |
Type : string
|
Defined in src/app/shared/models/crush-step.ts:3
|
Optional num |
Type : number
|
Defined in src/app/shared/models/crush-step.ts:6
|
op |
Type : string
|
Defined in src/app/shared/models/crush-step.ts:2
|
Optional type |
Type : string
|
Defined in src/app/shared/models/crush-step.ts:5
|
export class CrushStep {
op: string;
item_name?: string;
item?: number;
type?: string;
num?: number;
}