-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEGLClasses.cs
60 lines (58 loc) · 2.61 KB
/
EGLClasses.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EricLauncher
{
public class EGLManifest
{
public int FormatVersion { get; set; }
public bool bIsIncompleteInstall { get; set; }
public string? LaunchCommand { get; set; }
public string? LaunchExecutable { get; set; }
public string? ManifestLocation { get; set; }
public string? ManifestHash { get; set; }
public bool bIsApplication { get; set; }
public bool bIsExecutable { get; set; }
public bool bIsManaged { get; set; }
public bool bNeedsValidation { get; set; }
public bool bRequiresAuth { get; set; }
public bool bAllowMultipleInstances { get; set; }
public bool bCanRunOffline { get; set; }
public bool bAllowUriCmdArgs { get; set; }
public string[]? BaseURLs { get; set; }
public string? BuildLabel { get; set; }
public string[]? AppCategories { get; set; }
public object[]? ChunkDbs { get; set; }
public object[]? CompatibleApps { get; set; }
public string? DisplayName { get; set; }
public string? InstallationGuid { get; set; }
public string? InstallLocation { get; set; }
public string? InstallSessionId { get; set; }
public object[]? InstallTags { get; set; }
public object[]? InstallComponents { get; set; }
public string? HostInstallationGuid { get; set; }
public object[]? PrereqIds { get; set; }
public string? PrereqSHA1Hash { get; set; }
public string? LastPrereqSucceededSHA1Hash { get; set; }
public string? StagingLocation { get; set; }
public string? TechnicalType { get; set; }
public string? VaultThumbnailUrl { get; set; }
public string? VaultTitleText { get; set; }
public long InstallSize { get; set; }
public string? MainWindowProcessName { get; set; }
public string[]? ProcessNames { get; set; }
public string[]? BackgroundProcessNames { get; set; }
public string? MandatoryAppFolderName { get; set; }
public string? OwnershipToken { get; set; }
public string? CatalogNamespace { get; set; }
public string? CatalogItemId { get; set; }
public string? AppName { get; set; }
public string? AppVersionString { get; set; }
public string? MainGameCatalogNamespace { get; set; }
public string? MainGameCatalogItemId { get; set; }
public string? MainGameAppName { get; set; }
public string[]? AllowedUriEnvVars { get; set; }
}
}