1
// =================================
2
// Copyright (c) 2022 Seppo Laakko
3
// Distributed under the MIT license
4
// =================================
5
6
using
System
;
7
8
namespace
System
.
Screen
9
{
10
public
enum
DialogResult
11
{
12
none
,
ok
,
cancel
,
yes
,
no
,
quit
13
}
14
}