CorrelationStatus.cs 344 B

12345678910111213141516
  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. public enum CorrelationStatus
  6. {
  7. Nil,
  8. Normal,
  9. Unknown,
  10. Inserted,
  11. Deleted,
  12. Equal,
  13. Group,
  14. }
  15. }