I have a simple class like this.
public class Greeting
{
    public string From { get; set; }
    public string To { get; set; } 
    public string Message { get; set; }
}
Strangely I get the following warning.
Severity    Code    Description Project File    Line    Suppression State
Warning CS8618  Non-nullable property 'From' must contain a non-null value when exiting constructor. 
Consider declaring the property as nullable.    MxWork.Elsa2Wf.Tuts.BasicActivities  
D:\work\MxWork\Elsa2.0WfLearning\MxWork.Elsa2.0Wf.Tuts\src 
\MxWork.Elsa2Wf.Tuts.BasicActivities\Messages\Greeting.cs   5   Active
I am baffled. These new kind of messages that it throws pulls down my confidence. I got them from all the three properties, and this has suddenly appeared.
Can some one please suggest how this can be mitigated.
Update
These days I have seen using default! like so, and its working.
public class Greeting
{
    public string From { get; set; } = default!;
    public string To { get; set; } = default!;
    public string Message { get; set; } = default!;
}
Also you may put a question mark symbol(?) to indicate that the type is nullable, if you feel appropriate as follows.
public class Greeting
{
    public string? From { get; set; };
    public string? To { get; set; };
    public string? Message { get; set; };
}

 
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
    