File

src/app/transports/models/transport.ts

Index

Properties

Properties

createdOn
createdOn: Date
Type : Date
driverId
driverId: string
Type : string
id
id: string
Type : string
loadingDate
loadingDate: Date
Type : Date
receiversIds
receiversIds: Array<string>
Type : Array<string>
sendersIds
sendersIds: Array<string>
Type : Array<string>
status
status: TransportStatus
Type : TransportStatus
totalDistance
totalDistance: number
Type : number
unloadingDate
unloadingDate: Date
Type : Date
updatedOn
updatedOn: Date
Type : Date
import { TransportStatus } from './transport-status';

export interface Transport {
  id: string;
  createdOn: Date;
  updatedOn: Date;
  sendersIds: Array<string>;
  receiversIds: Array<string>;
  loadingDate: Date;
  unloadingDate: Date;
  status: TransportStatus;
  driverId: string;
  totalDistance: number;
}

results matching ""

    No results matching ""