File: src\ZipPart.cs | Web Access |
Project: src\src\Microsoft.DotNet.SignTool\Microsoft.DotNet.SignTool.csproj (Microsoft.DotNet.SignTool) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.DotNet.SignTool { internal readonly struct ZipPart { internal string RelativeName { get; } internal FileSignInfo FileSignInfo { get; } internal ZipPart(string relativeName, FileSignInfo signInfo) { RelativeName = relativeName; FileSignInfo = signInfo; } } } |