mirror of
https://github.com/chylex/Brotli-Builder.git
synced 2024-12-22 16:42:46 +01:00
12 lines
354 B
C#
12 lines
354 B
C#
namespace BrotliLib.Brotli.Utils{
|
|
public readonly struct CopyOutputInfo{
|
|
public int BytesWritten { get; }
|
|
public bool IsBackReference { get; }
|
|
|
|
public CopyOutputInfo(int bytesWritten, bool isBackReference){
|
|
this.BytesWritten = bytesWritten;
|
|
this.IsBackReference = isBackReference;
|
|
}
|
|
}
|
|
}
|