TerminalPackage.cs
1 // Copyright (c) Microsoft Corporation 2 // The Microsoft Corporation licenses this file to you under the MIT license. 3 // See the LICENSE file in the project root for more information. 4 5 using System; 6 using System.IO; 7 using ManagedCommon; 8 9 // using Wox.Infrastructure.Image; 10 namespace Microsoft.CmdPal.Ext.WindowsTerminal; 11 12 public class TerminalPackage 13 { 14 public string AppUserModelId { get; } 15 16 public Version Version { get; } 17 18 public string DisplayName { get; } 19 20 public string SettingsPath { get; } 21 22 public string LogoPath { get; } 23 24 public TerminalPackage(string appUserModelId, Version version, string displayName, string settingsPath, string logoPath) 25 { 26 AppUserModelId = appUserModelId; 27 Version = version; 28 DisplayName = displayName; 29 SettingsPath = settingsPath; 30 LogoPath = logoPath; 31 } 32 }