FilePartExtractionBeginEventArgs.cs 600 B

12345678910111213141516171819202122
  1. using System;
  2. namespace SharpCompress.Common
  3. {
  4. public class FilePartExtractionBeginEventArgs : EventArgs
  5. {
  6. /// <summary>
  7. /// File name for the part for the current entry
  8. /// </summary>
  9. public string Name { get; internal set; }
  10. /// <summary>
  11. /// Uncompressed size of the current entry in the part
  12. /// </summary>
  13. public long Size { get; internal set; }
  14. /// <summary>
  15. /// Compressed size of the current entry in the part
  16. /// </summary>
  17. public long CompressedSize { get; internal set; }
  18. }
  19. }