New YAML definition for CoolingType properties.

Add property AirCooled that will be set to true if cooled by air
(fans).

Add property WaterCooled that will be set to true if cooled by
water.

Change-Id: I816b41a7205ede1583718ae1ec8e27031ba392c8
Signed-off-by: Brandon Wyman <bjwyman@gmail.com>
diff --git a/xyz/openbmc_project/Inventory/Decorator/CoolingType.interface.yaml b/xyz/openbmc_project/Inventory/Decorator/CoolingType.interface.yaml
new file mode 100644
index 0000000..49a0429
--- /dev/null
+++ b/xyz/openbmc_project/Inventory/Decorator/CoolingType.interface.yaml
@@ -0,0 +1,13 @@
+description: >
+    Implement properties to indicate the element cooling type (air, water, etc.).
+properties:
+    - name: AirCooled
+      type: boolean
+      description: >
+          The element uses air/fans for cooling when set to true.
+    - name: WaterCooled
+      type: boolean
+      description: >
+          The element uses water for cooling when set to true.
+
+# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4