mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-05 11:25:20 +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,
|
|
}
|