#ifndef NALOGA0801_CONSTRUCTIONMATERIAL_H
#define NALOGA0801_CONSTRUCTIONMATERIAL_H
#include "string"

class ConstructionMaterial {
private:
    std::string item;
    unsigned int amount;

public:
    ConstructionMaterial(std::string item, unsigned int amount);

    std::string toString();
};


#endif //NALOGA0801_CONSTRUCTIONMATERIAL_H