master
h 26 lines 409 Bytes
Raw
1 /*++
2
3 Copyright (c) Microsoft. All rights reserved.
4
5 Module Name:
6
7 InspectModel.h
8
9 Abstract:
10
11 This file contains the InspectModel definition
12
13 --*/
14 #pragma once
15
16 namespace wsl::windows::wslc::models {
17 typedef enum _InspectType
18 {
19 Container = 1,
20 Image = 2,
21 Volume = 4,
22 Network = 8,
23
24 All = Container | Image | Network | Volume,
25 } InspectType;
26 } // namespace wsl::windows::wslc::models