summaryrefslogtreecommitdiffstats
path: root/presence/fan_properties.hpp
blob: 296318d3bb556853405e8e6ed0b670b98da562ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once

#include <string>
#include <vector>
#include <tuple>


namespace phosphor
{
namespace fan
{

/**
 * @brief Fan enclosure properties
 * @details Contains the inventory path, description and list of sensors
 */
using Properties = std::tuple<std::string,
                              std::string,
                              std::vector<std::string>>;

} // namespace fan
} // namespace phosphor
OpenPOWER on IntegriCloud