blob: e8904511ff9c936c0490a8286d7d2ec7f06bedd4 [file] [log] [blame]
Matt Spinlerafa857c2019-10-24 13:03:46 -05001#pragma once
2
3namespace openpower
4{
5namespace pels
6{
7
8enum class UserDataFormat
9{
Matt Spinler56ad2a02020-03-26 14:00:52 -050010 json = 1,
11 cbor = 2,
12 text = 3,
13 custom = 4
Matt Spinlerafa857c2019-10-24 13:03:46 -050014};
15
16enum class UserDataFormatVersion
17{
Matt Spinler56ad2a02020-03-26 14:00:52 -050018 json = 1,
19 cbor = 1,
20 text = 1
Matt Spinlerafa857c2019-10-24 13:03:46 -050021};
22
23} // namespace pels
24} // namespace openpower