System.IO.Compression.ZipArchiveEntry
namespace System.IO.Compression
{
public class ZipArchiveEntry
{
public ZipArchive Archive { get; }
public long CompressedLength { get; }
public string FullName { get; }
public DateTimeOffset LastWriteTime { get; set; }
public long Length { get; }
public string Name { get; }
public void Delete();
public Stream Open();
}
}