Skip to content

Commit

Permalink
fix: removed a keyword that is only supported in .NET 7.3 or after
Browse files Browse the repository at this point in the history
  • Loading branch information
jjmaldonis committed Sep 11, 2023
1 parent 945ce3b commit b42c0f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Deepgram/Models/MessageToSend.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ public MessageToSend(byte[] message, WebSocketMessageType type)
MessageType = type;
}

public readonly ArraySegment<byte> Message { get; }
public ArraySegment<byte> Message { get; }

public readonly WebSocketMessageType MessageType { get; }
public WebSocketMessageType MessageType { get; }
}
}

0 comments on commit b42c0f7

Please sign in to comment.