mirror of
https://github.com/2dust/v2rayN.git
synced 2026-05-30 01:34:08 +00:00
8 lines
101 B
C#
8 lines
101 B
C#
namespace v2rayN.Desktop.Common;
|
|
|
|
public enum ButtonResult
|
|
{
|
|
None = 0,
|
|
Yes = 1,
|
|
No = 2
|
|
}
|