'Why is there a @ character before the type property in .net core c#?

Why is there a @ character before the type property while debugging ?

Below are the ParentsId class details used to pass the input parameters through API.

public class ParentsId
{
    public string type { get; set; }
    public string id { get; set; }
}

screen shot attached highlighted with color.

enter image description here

Thanks in advance.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source