forked from Devolutions/UniGetUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathManagerProperties.cs
More file actions
24 lines (23 loc) · 1.04 KB
/
ManagerProperties.cs
File metadata and controls
24 lines (23 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using UniGetUI.Interface.Enums;
using UniGetUI.PackageEngine.Interfaces;
namespace UniGetUI.PackageEngine.ManagerClasses.Manager
{
public struct ManagerProperties
{
public bool IsDummy = false;
public string Name { get; set; } = "Unset";
public string? DisplayName { get; set; }
public string Description { get; set; } = "Unset";
public IconType IconId { get; set; } = IconType.Help;
public string ColorIconId { get; set; } = "Unset";
// public string ExecutableCallArgs { get; set; } = "Unset";
public string ExecutableFriendlyName { get; set; } = "Unset";
public string InstallVerb { get; set; } = "Unset";
public string UpdateVerb { get; set; } = "Unset";
public string UninstallVerb { get; set; } = "Unset";
public IManagerSource[] KnownSources { get; set; } = [];
public IManagerSource DefaultSource { get; set; } = null!;
public ManagerProperties() { }
public ManagerProperties(bool IsDummy) { this.IsDummy = IsDummy; }
}
}