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