mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-11 21:23:48 +00:00
25 lines
389 B
C#
25 lines
389 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ElectronNET.API.Entities
|
|
{
|
|
public enum PathName
|
|
{
|
|
home,
|
|
appData,
|
|
userData,
|
|
temp,
|
|
exe,
|
|
module,
|
|
desktop,
|
|
documents,
|
|
downloads,
|
|
music,
|
|
pictures,
|
|
videos,
|
|
logs,
|
|
pepperFlashSystemPlugin
|
|
}
|
|
}
|