InstallerPackageDependency.cs (873B)
1 // ----------------------------------------------------------------------------- 2 // <copyright file="InstallerPackageDependency.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 /// <summary> 10 /// Class that contains package dependency from same source. 11 /// </summary> 12 public class InstallerPackageDependency 13 { 14 /// <summary> 15 /// Gets or sets the dependency package identifier. 16 /// </summary> 17 public string PackageIdentifier { get; set; } 18 19 /// <summary> 20 /// Gets or sets the minimum version of the dependency package. 21 /// </summary> 22 public string MinimumVersion { get; set; } 23 } 24 }