mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
12 lines
299 B
C#
12 lines
299 B
C#
namespace SabreTools.Serialization
|
|
{
|
|
/// <summary>
|
|
/// Represents separated-value variants
|
|
/// </summary>
|
|
public partial class SeparatedValue
|
|
{
|
|
private const int HeaderWithoutExtendedHashesCount = 14;
|
|
|
|
private const int HeaderWithExtendedHashesCount = 17;
|
|
}
|
|
} |