Skip to content

Commit

Permalink
Update README.md example to use Guid
Browse files Browse the repository at this point in the history
  • Loading branch information
Joy-less committed Feb 17, 2025
1 parent a0d0b61 commit 8a709d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Server.OnReceive += (Channel, Message) => {
[MemoryPackable]
public partial record ExampleRequest : Message;
[MemoryPackable]
public partial record ExampleResponse(long Id, string ExampleText) : Message(Id);
public partial record ExampleResponse(Guid Id, string ExampleText) : Message(Id);
```
#### Output
```
Expand Down

0 comments on commit 8a709d9

Please sign in to comment.