Google.Protobuf.Reflection.DescriptorDeclaration
Provides additional information about the declaration of a descriptor,
such as source location and comments.
namespace Google.Protobuf.Reflection
{
public sealed class DescriptorDeclaration
{
public IDescriptor Descriptor { get; }
public int StartLine { get; }
public int StartColumn { get; }
public int EndLine { get; }
public int EndColumn { get; }
public string LeadingComments { get; }
public string TrailingComments { get; }
public IReadOnlyList<string> LeadingDetachedComments { get; }
}
}