namespace SabreTools.Data.Models.XZ
{
public class FilterFlag
{
///
/// Filter ID
///
/// Stored as a variable-length integer
public ulong FilterID { get; set; }
///
/// Filter ID
///
/// Stored as a variable-length integer
public ulong SizeOfProperties { get; set; }
///
/// Properties of the filter whose length is given by
///
///
public byte[] Properties { get; set; } = [];
}
}