mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-25 16:34:45 +00:00
17 lines
358 B
C#
17 lines
358 B
C#
using System;
|
|
#if !PORTABLE && !NETFX_CORE
|
|
using System.IO;
|
|
#endif
|
|
|
|
namespace SharpCompress.Common
|
|
{
|
|
public interface IVolume : IDisposable
|
|
{
|
|
#if !PORTABLE && !NETFX_CORE
|
|
/// <summary>
|
|
/// File that backs this volume, if it not stream based
|
|
/// </summary>
|
|
FileInfo VolumeFile { get; }
|
|
#endif
|
|
}
|
|
} |