mirror of https://github.com/quasar/Quasar.git
16 lines
395 B
C#
16 lines
395 B
C#
|
|
namespace ProtoBuf
|
|
{
|
|
/// <summary>
|
|
/// Used to hold particulars relating to nested objects. This is opaque to the caller - simply
|
|
/// give back the token you are given at the end of an object.
|
|
/// </summary>
|
|
public struct SubItemToken
|
|
{
|
|
internal readonly int value;
|
|
internal SubItemToken(int value) {
|
|
this.value = value;
|
|
}
|
|
}
|
|
}
|