Skip to content

Commit

Permalink
Make StringData property nullable in WorkflowDefinition
Browse files Browse the repository at this point in the history
Updated the `StringData` property to allow null values, improving flexibility and aligning with usage scenarios where the property may not always contain a value. This change ensures better handling of optional data.
  • Loading branch information
sfmskywalker committed Dec 26, 2024
1 parent 0992404 commit 62df21c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public class WorkflowDefinition : VersionedEntity
/// <summary>
/// A textual representation of the workflow. The data is to be interpreted by the configured materializer.
/// </summary>
public string StringData { get; set; } = null!;
public string? StringData { get; set; }

/// <summary>
/// A binary representation of the workflow. The data is to be interpreted by the configured materializer.
Expand Down

0 comments on commit 62df21c

Please sign in to comment.