Files
BeWoPlaner/Shared/DataContracts/MikePHPContracts/AiMessageResponse.cs
2025-03-28 10:05:29 +01:00

19 lines
367 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BS.Shared.DataContracts.MikePHPContracts
{
public class AiMessageResponse
{
[JsonProperty("model")]
public string Model { get; set; }
[JsonProperty("response")]
public string Response { get; set; }
}
}