mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-07-11 19:47:09 +00:00
16 lines
316 B
C#
16 lines
316 B
C#
using System;
|
|
using System.IO;
|
|
using SharpCompress.Common;
|
|
|
|
namespace SharpCompress.Writer
|
|
{
|
|
public interface IWriter : IDisposable
|
|
{
|
|
ArchiveType WriterType
|
|
{
|
|
get;
|
|
}
|
|
void Write(string filename, Stream source, DateTime? modificationTime);
|
|
}
|
|
}
|