first
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import { DeliveryType } from "../../../../common/enums/shipment.enum";
|
||||
|
||||
export interface IShipmentProviders {
|
||||
_id: number;
|
||||
name: string;
|
||||
description: string;
|
||||
costs: IShipmentCost[];
|
||||
deliveryType: DeliveryType;
|
||||
deliveryTime: number;
|
||||
deleted: boolean;
|
||||
}
|
||||
export interface IShipmentCost {
|
||||
weightRange: { min: number; max: number }; // weight range in kg
|
||||
cost_first: number;
|
||||
cost_rest: number;
|
||||
}
|
||||
Reference in New Issue
Block a user