-
Notifications
You must be signed in to change notification settings - Fork 16
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
Reduce compilation warnings, so we can see when something is wrong. #336
Conversation
@CartBlanche are you still working on this? If you're not, mark as Ready for Review and we can take a look. |
@jorgedevs Yes I'm still working on it (2 other PRs have take priority over the last week). Also more testing required as it's quite an extensive change. Hopefully this week I'll change it to ready for review. |
e433e39
to
132df6c
Compare
9d66f16
to
3b17ce0
Compare
@jorgedevs I've decided to park this PR and instead work on zeroing the warnings in V2. |
public string FirstName { get; set; } | ||
public string LastName { get; set; } | ||
public string FullName { get; set; } | ||
public string? Id { get; set; } |
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.
Since these are DTOs used by Cloud, verify that these can be nullable objects and still operate before committing these. the other option is to initialize them to default!
, which will also eliminate the warning
No description provided.