IVolume.cs 145 B

123456789101112
  1. using System;
  2. #if !NO_FILE
  3. using System.IO;
  4. #endif
  5. namespace SharpCompress.Common
  6. {
  7. public interface IVolume : IDisposable
  8. {
  9. }
  10. }