mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-01-20 18:07:52 +00:00
10 lines
184 B
C
10 lines
184 B
C
#ifndef _PRICESCONTAINER_H
|
|
#define _PRICESCONTAINER_H
|
|
struct PricesContainer {
|
|
char currency[4];
|
|
char measurementUnit[4];
|
|
int32_t points[25];
|
|
char source[4];
|
|
};
|
|
#endif
|