sea_transport_project/cargoentity.h
2020-09-10 00:43:40 +07:00

18 lines
288 B
C++

#ifndef CARGOENTITY_H
#define CARGOENTITY_H
#include "deliverypointentity.h"
#include <QString>
class CargoEntity
{
QString _cargo_id;
DeliveryPointEntity _destination;
public:
CargoEntity(QString _cargo_id, DeliveryPointEntity _destination);
};
#endif // CARGOENTITY_H