PartSHA1HashAnnotation.cs 366 B

123456789101112131415
  1. // Copyright (c) Microsoft. All rights reserved.
  2. // Licensed under the MIT license. See LICENSE file in the project root for full license information.
  3. namespace OpenXmlPowerTools
  4. {
  5. internal class PartSHA1HashAnnotation
  6. {
  7. public string Hash;
  8. public PartSHA1HashAnnotation(string hash)
  9. {
  10. Hash = hash;
  11. }
  12. }
  13. }