mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-13 05:25:00 +00:00
12 lines
283 B
C#
12 lines
283 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);
|
|
}
|
|
} |