InstallerInstallationMetadata.cs (879B)
1 // ----------------------------------------------------------------------------- 2 // <copyright file="InstallerInstallationMetadata.cs" company="Microsoft Corporation"> 3 // Copyright (c) Microsoft Corporation. Licensed under the MIT License. 4 // </copyright> 5 // ----------------------------------------------------------------------------- 6 7 namespace Microsoft.WinGetUtil.Models.V1 8 { 9 using System.Collections.Generic; 10 11 /// <summary> 12 /// Installation metadata. 13 /// </summary> 14 public class InstallerInstallationMetadata 15 { 16 /// <summary> 17 /// Gets or sets the default install location. 18 /// </summary> 19 public string DefaultInstallLocation { get; set; } 20 21 /// <summary> 22 /// Gets or sets the manifest installer files. 23 /// </summary> 24 public List<ManifestInstallerFile> Files { get; set; } 25 } 26 }