Fix build_init vcxproj to correctly detect changes in config.h.
[mono.git] / mcs / class / System.IO.Compression / SharpCompress / Common / Zip / ZipVolume.cs
1 using System.IO;
2
3 namespace SharpCompress.Common.Zip
4 {
5     internal class ZipVolume : Volume
6     {
7         public ZipVolume(Stream stream, Options options)
8             : base(stream, options)
9         {
10         }
11
12         public string Comment { get; internal set; }
13     }
14 }