mirror of
https://github.com/leiurayer/downkyi.git
synced 2025-03-26 01:00:11 +08:00
12 lines
190 B
C#
12 lines
190 B
C#
namespace DownKyi.Core.Settings
|
|
{
|
|
public enum AfterDownloadOperation
|
|
{
|
|
NOT_SET = 0,
|
|
NONE = 1,
|
|
OPEN_FOLDER,
|
|
CLOSE_APP,
|
|
CLOSE_SYSTEM
|
|
}
|
|
}
|