Skip to content

Commit ad72967

Browse files
committed
support peverify
1 parent 1bb6e80 commit ad72967

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/DocumentFormat.OpenXml.Features/ParagraphId/ParagraphIdOptions.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ namespace DocumentFormat.OpenXml.Features
99
public class ParagraphIdOptions
1010
{
1111
/// <summary>
12-
/// Gets a value indicating whether or not paragraph ids should be auto-generated on elements.
12+
/// Gets or sets a value indicating whether or not paragraph ids should be auto-generated on elements.
1313
/// </summary>
14-
public bool AutoGenerateIds { get; init; } = true;
14+
public bool AutoGenerateIds { get; set; } = true;
1515

1616
/// <summary>
17-
/// Gets a value indicating whether or not uniqueness should be guaranteed on elements added to the document. This will change a node's para id if it has already been registered.
17+
/// Gets or sets a value indicating whether or not uniqueness should be guaranteed on elements added to the document. This will change a node's para id if it has already been registered.
1818
/// </summary>
19-
public bool EnsureUniquenessOnExistingNodes { get; init; } = true;
19+
public bool EnsureUniquenessOnExistingNodes { get; set; } = true;
2020
}
2121
}

0 commit comments

Comments
 (0)