Skip to content

Commit 0a217e5

Browse files
committed
Fix field access in TLV
1 parent 73e7b03 commit 0a217e5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

SabreTools.ASN1/TypeLengthValue.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ public class TypeLengthValue
1414
/// <summary>
1515
/// The ASN.1 type
1616
/// </summary>
17-
public ASN1Type Type { get; private set; }
17+
public ASN1Type Type { get; }
1818

1919
/// <summary>
2020
/// Length of the value
2121
/// </summary>
22-
public ulong Length { get; private set; }
22+
public ulong Length { get; }
2323

2424
/// <summary>
2525
/// Generic value associated with <see cref="Type"/>
2626
/// </summary>
27-
public object? Value { get; private set; }
27+
public object? Value { get; }
2828

2929
/// <summary>
3030
/// Read from the source data array at an index

0 commit comments

Comments
 (0)