// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. namespace WixToolset.Versioning { /// /// Label in a WixVersion. /// public class WixVersionLabel { /// /// Creates a string only version label. /// /// String value for version label. public WixVersionLabel(string label) { this.Label = label; } /// /// Creates a string version label with numeric value. /// /// String value for version label. /// Numeric value for the version label. public WixVersionLabel(string label, uint? numeric) { this.Label = label; this.Numeric = numeric; } /// /// Gets the string label value. /// public string Label { get; set; } /// /// Gets the optional numeric label value. /// public uint? Numeric { get; set; } } }