-
-
Notifications
You must be signed in to change notification settings - Fork 287
re-add tenantinfo interface #1075
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| /// Information about the tenant for this context. | ||
| /// </summary> | ||
| TenantInfo? TenantInfo { get; init; } | ||
| ITenantInfo? TenantInfo { get; init; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It likely doesn't concern any code I'd author, but do you need init here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
agree, I have removed the initial accessors here
atrauzzi
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All in all, looks good. Just a comment on an init in an interface. Could probably broadly apply that question everywhere. But yeah, looking forward to this! 🙂
In v10 a breaking change was the removal of
ITenantInfoandTenantInfochanged to a record in the name of immutability. Based on community feedback this is reverted.ITenantInfois back andTenantInfois a basic class implementation. This is technically a breaking change but will be treated as a fix for versioning.Closes #1073