Skip to content

Commit

Permalink
SonarCloud refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
tinodo committed Oct 23, 2023
1 parent 5913e24 commit e4c6bd5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions OBSClient/Messages/TriggerHotkeyBySequenceRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ public TriggerHotkeyBySequenceRequest(ObsKey? keyId, KeyModifiers? keyModifiers)
this.KeyModifiers = keyModifiers;
}

/// <summary>
/// Initializes a new instance of the <see cref="TriggerHotkeyBySequenceRequest"/> class.
/// </summary>
/// <param name="keyId">The key ID.</param>
/// <param name="keyModifier">The <see cref="KeyModifier"/>.</param>
public TriggerHotkeyBySequenceRequest(ObsKey? keyId, KeyModifier? keyModifier)
{
this.KeyId = keyId;
Expand Down

0 comments on commit e4c6bd5

Please sign in to comment.