diff --git a/Projects/Server/PropertyList/IPropertyList.cs b/Projects/Server/PropertyList/IPropertyList.cs index 6a873f995..d6b529823 100644 --- a/Projects/Server/PropertyList/IPropertyList.cs +++ b/Projects/Server/PropertyList/IPropertyList.cs @@ -38,6 +38,9 @@ public interface IPropertyList : ISelfInterpolatedStringHandler /** Emits newline-joined text across multiple properties so none exceeds the legacy client's per-property buffer. */ public void AddChunked(ReadOnlySpan text); + /** Builder for variable-length multi-line free text; flushes via AddChunked on dispose. */ + public OplTextBlock TextBlock(); + /** Convenience method for $"{value}". */ public void Add(int number, int value);