Skip to content

Commit

Permalink
Add task reference to signatures [part 1/2] (#392)
Browse files Browse the repository at this point in the history
* Reimplements property on SignRequest to hold TaskId/GeneratedFromTask
  • Loading branch information
danielskovli authored May 13, 2024
1 parent 02ebb22 commit 1879521
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Storage.Interface/Models/SignRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ public class SignRequest
[JsonProperty(PropertyName = "signatureDocumentDataType")]
public string SignatureDocumentDataType { get; set; }

/// <summary>
/// The task which should be linked to this signature
/// </summary>
[JsonProperty(PropertyName = "generatedFromTask")]
public string GeneratedFromTask { get; set; } = string.Empty;

/// <summary>
/// List of dataElementSignatures
/// </summary>
Expand Down

0 comments on commit 1879521

Please sign in to comment.