1/*
2 * Copyright (C) 2020-2022 The opuntiaOS Project Authors.
3 * + Contributed by Nikita Melekhin <nimelehin@gmail.com>
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
9#pragma once
10
11namespace WinServer {
12
13enum class ViolationClass {
14 Ignorable,
15 Moderate,
16 Serious,
17};
18
19} // namespace WinServer