12345678910111213141516171819202122 |
- using System;
- namespace SharpCompress.Common
- {
- public class FilePartExtractionBeginEventArgs : EventArgs
- {
-
-
-
- public string Name { get; internal set; }
-
-
-
- public long Size { get; internal set; }
-
-
-
- public long CompressedSize { get; internal set; }
- }
- }
|