Fix build_init vcxproj to correctly detect changes in config.h.
[mono.git] / mcs / class / System.IO.Compression / SharpCompress / Common / CompressedBytesReadEventArgs.cs
1 using System;
2
3 namespace SharpCompress.Common
4 {
5     internal class CompressedBytesReadEventArgs : EventArgs
6     {
7         /// <summary>
8         /// Compressed bytes read for the current entry
9         /// </summary>
10         public long CompressedBytesRead { get; internal set; }
11
12         /// <summary>
13         /// Current file part read for Multipart files (e.g. Rar)
14         /// </summary>
15         public long CurrentFilePartCompressedBytesRead { get; internal set; }
16     }
17 }