Json 데이터를 Class 객체로 만들 때, Json Key 값에 특수문자가 들어있는 경우가 있다. JsonProperty 의 PropertyName 으로 Property 이름을 커스터마이징 할 수 있다. [JsonProperty(PropertyName = "Feedback_IM&SR")] string _feedback_imsr { get; set; } https://learn.microsoft.com/en-us/dotnet/standard/serialization/system-text-json/customize-properties?pivots=dotnet-8-0 How to customize property names and values with System.Text.Json - .NET Learn ..