diff --git a/docs/tutorials/getting-started.md b/docs/tutorials/getting-started.md index cee8f33e..53b5b302 100644 --- a/docs/tutorials/getting-started.md +++ b/docs/tutorials/getting-started.md @@ -42,15 +42,23 @@ a POST from the client that... The two *commands* for the POST endpoints are below: - - ```cs public record CreateIssue(Guid OriginatorId, string Title, string Description); ``` snippet source | anchor +and + + + +```cs +public record AssignIssue(Guid IssueId, Guid AssigneeId); +``` +snippet source | anchor + + Let's jump right into the `Program.cs` file of our new web service: