This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,18 @@
using System;
namespace ICSharpCode.SharpZipLib.Zip
{
// Token: 0x0200005B RID: 91
public interface ITaggedData
{
// Token: 0x170000CF RID: 207
// (get) Token: 0x06000383 RID: 899
short TagID { get; }
// Token: 0x06000384 RID: 900
void SetData(byte[] data, int offset, int count);
// Token: 0x06000385 RID: 901
byte[] GetData();
}
}