api.fabaccess-api/README.md

10 lines
266 B
Markdown
Raw Normal View History

# FabAccess API
## Code generation bugs under c#
When returning an Interface it may be required to append a dummy valueto work around a c# code generation bug.
```diff
- whoami @4 () -> ( you :Api.User );
2024-03-27 19:43:37 +01:00
+ whoami @4 () -> ( you :Api.User, dummy :UInt8 = 0 );
```