refactor(PDFBurner): rename Annotation.internalType to fieldName for clarity

This commit is contained in:
tekh 2025-10-09 12:19:19 +02:00
parent 57422a481c
commit 7b6f916486

View File

@ -206,7 +206,7 @@ Namespace Jobs.FinalizeDocument
Public index As Integer = Nothing Public index As Integer = Nothing
Public internalType As String = Nothing Public fieldName As String = Nothing
Public hasStructuredID As Boolean = False Public hasStructuredID As Boolean = False
@ -240,18 +240,24 @@ Namespace Jobs.FinalizeDocument
Throw New BurnAnnotationException($"The index of annotation is not integer. Id: {_id}") Throw New BurnAnnotationException($"The index of annotation is not integer. Id: {_id}")
End If End If
internalType = parts(3) fieldName = parts(3)
hasStructuredID = True hasStructuredID = True
End Set End Set
End Property End Property
Public Property bbox As List(Of Double) Public Property bbox As List(Of Double)
Public Property type As String Public Property type As String
Public Property isSignature As Boolean Public Property isSignature As Boolean
Public Property imageAttachmentId As String Public Property imageAttachmentId As String
Public Property lines As Lines Public Property lines As Lines
Public Property pageIndex As Integer Public Property pageIndex As Integer
Public Property strokeColor As String Public Property strokeColor As String
End Class End Class