Files

12 lines
283 B
C#
Raw Permalink Normal View History

2013-04-07 10:58:58 +01:00
using System;
using System.IO;
using SharpCompress.Common;
namespace SharpCompress.Writer
{
public interface IWriter : IDisposable
{
2013-04-28 12:32:55 +01:00
ArchiveType WriterType { get; }
2013-04-07 10:58:58 +01:00
void Write(string filename, Stream source, DateTime? modificationTime);
}
2013-04-28 12:32:55 +01:00
}