mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-01-15 16:25:43 +00:00
19 lines
283 B
C
19 lines
283 B
C
/**
|
|
* @copyright Utilitech AS 2023
|
|
* License: Fair Source
|
|
*
|
|
*/
|
|
|
|
#ifndef _PRICESCONTAINER_H
|
|
#define _PRICESCONTAINER_H
|
|
|
|
#define PRICE_NO_VALUE -127
|
|
|
|
struct PricesContainer {
|
|
char currency[4];
|
|
char measurementUnit[4];
|
|
int32_t points[25];
|
|
char source[4];
|
|
};
|
|
#endif
|