File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
ProjectVG.Application/Models/Chat Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -7,22 +7,22 @@ public class IntegratedChatMessage
77 [ JsonPropertyName ( "type" ) ]
88 public string Type { get ; set ; } = "chat" ;
99
10- [ JsonPropertyName ( "messageType " ) ]
10+ [ JsonPropertyName ( "message_type " ) ]
1111 public string MessageType { get ; set ; } = "json" ;
1212
13- [ JsonPropertyName ( "sessionId " ) ]
13+ [ JsonPropertyName ( "session_id " ) ]
1414 public string SessionId { get ; set ; } = string . Empty ;
1515
1616 [ JsonPropertyName ( "text" ) ]
1717 public string ? Text { get ; set ; }
1818
19- [ JsonPropertyName ( "audioData " ) ]
19+ [ JsonPropertyName ( "audio_data " ) ]
2020 public string ? AudioData { get ; set ; } // Base64 인코딩된 오디오 데이터
2121
22- [ JsonPropertyName ( "audioFormat " ) ]
22+ [ JsonPropertyName ( "audio_format " ) ]
2323 public string ? AudioFormat { get ; set ; } = "wav" ;
2424
25- [ JsonPropertyName ( "audioLength " ) ]
25+ [ JsonPropertyName ( "audio_length " ) ]
2626 public float ? AudioLength { get ; set ; }
2727
2828 [ JsonPropertyName ( "timestamp" ) ]
You can’t perform that action at this time.
0 commit comments