mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-16 21:23:13 +00:00
11 lines
170 B
C#
11 lines
170 B
C#
using System;
|
|
#if !PORTABLE && !NETFX_CORE
|
|
using System.IO;
|
|
#endif
|
|
|
|
namespace SharpCompress.Common
|
|
{
|
|
public interface IVolume : IDisposable
|
|
{
|
|
}
|
|
} |