blob: 296318d3bb556853405e8e6ed0b670b98da562ea [file] [log] [blame]
Matthew Barthb8034452017-02-17 16:39:46 -06001#pragma once
2
3#include <string>
4#include <vector>
5#include <tuple>
6
7
8namespace phosphor
9{
10namespace fan
11{
12
Matthew Barth5c15b792017-03-01 11:17:00 -060013/**
14 * @brief Fan enclosure properties
15 * @details Contains the inventory path, description and list of sensors
16 */
Matthew Barthb8034452017-02-17 16:39:46 -060017using Properties = std::tuple<std::string,
18 std::string,
19 std::vector<std::string>>;
20
21} // namespace fan
22} // namespace phosphor