mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-30 10:19:51 +08:00
9 lines
117 B
C#
9 lines
117 B
C#
namespace MicaSetup.Shell.Dialogs;
|
|
|
|
public enum CommonFileDialogResult
|
|
{
|
|
None = 0,
|
|
Ok = 1,
|
|
Cancel = 2,
|
|
}
|