summaryrefslogtreecommitdiff
path: root/sales_data.hpp
blob: cce4469d37cc036391bf06ba3e7e88ff6bfca303 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef SALES_DATA_H
#define SALES_DATA_H
#include <string>
struct SalesData {
	std::string BookNo;
	unsigned int UnitsSold = 0;
	double Revenue = 0.0;
};

#endif