Loosen the RTEValue datacontract to improve migrations (#18349)

This commit is contained in:
Sven Geusens
2025-02-17 15:27:22 +01:00
committed by GitHub
parent 8bbb12da5a
commit d87a84be14
2 changed files with 17 additions and 1 deletions

View File

@@ -10,5 +10,5 @@ public class RichTextEditorValue
public required string Markup { get; set; }
[DataMember(Name = "blocks")]
public required RichTextBlockValue? Blocks { get; set; }
public RichTextBlockValue? Blocks { get; set; }
}