Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ internal DialogSensitivityUpdate(DialogSensitivityUpdateInternal internalEvent)
OperationContext = internalEvent.OperationContext;
ResultInformation = internalEvent.ResultInformation;
DialogId = internalEvent.DialogId;
SensitiveMask = internalEvent.SensitiveMask;
}

/// <summary> Determines the type of the dialog. </summary>
Expand All @@ -34,6 +35,9 @@ internal DialogSensitivityUpdate(DialogSensitivityUpdateInternal internalEvent)
/// <summary> Dialog Id</summary>
public string DialogId { get; }

/// <summary> SensitiveMask </summary>
public bool? SensitiveMask { get; }

/// <summary>
/// Deserialize <see cref="DialogSensitivityUpdate"/> event.
/// </summary>
Expand Down
Loading