namespace SabreTools.Data.Models.ASN1
{
///
/// ASN.1 type/length/value class that all types are based on
///
public class TypeLengthValue
{
///
/// The ASN.1 type
///
public ASN1Type Type { get; set; }
///
/// Length of the value
///
public ulong Length { get; set; }
///
/// Generic value associated with
///
public object? Value { get; set; }
}
}