GoldenEye
GoldenEye copied to clipboard
Swagger Schema mostly empty
I started the default template and realised that the Swagger UI does not show the Model details of e.g. Post Issue. Reason is probably, that they are defined with Property getters only..
public string Title { get; }
Not sure if there is a good solution but I changed the TargetFramework to net5.0
and then we can use the new init operator which seams to work...
public string Title { get; init; }
Not sure if the project should be limited that hard, though
Thanks for letting me know. I'll verify that 👍