InstallerMarkets.cs (860B)
1 // ----------------------------------------------------------------------------- 2 // <copyright file="InstallerMarkets.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 /// Class that contains installer markets. 13 /// </summary> 14 public class InstallerMarkets 15 { 16 /// <summary> 17 /// Gets or sets the list of allowed markets. 18 /// </summary> 19 public List<string> AllowedMarkets { get; set; } 20 21 /// <summary> 22 /// Gets or sets the list of excluded markets. 23 /// </summary> 24 public List<string> ExcludedMarkets { get; set; } 25 } 26 }