Match.cs 573 B

1234567891011121314151617
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT license.
  3. // See the LICENSE file in the project root for more information.
  4. namespace SharpCompress.Compressors.Deflate64
  5. {
  6. /// <summary>
  7. /// This class represents a match in the history window.
  8. /// </summary>
  9. internal sealed class Match
  10. {
  11. internal MatchState State { get; set; }
  12. internal int Position { get; set; }
  13. internal int Length { get; set; }
  14. internal byte Symbol { get; set; }
  15. }
  16. }