SpeakingInBits / PC2

Custom replacement website for pc2online.org. Now live!
https://pc2online.org/
6 stars 0 forks source link

Address non-nullable property warning for Staff.Email #305

Closed JoeProgrammer88 closed 3 months ago

JoeProgrammer88 commented 4 months ago

The Staff class has an Email property that is currently throwing a warning. It is marked as non-nullable but does not have a default value.

Explore the possibility of adding the required modifier on this property and ensure it does not break any existing functionality. This approach would be preferred.

We could also use the null forgiving operator if adding required will end up breaking too many things