19 lines
367 B
C#
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; }
|
|
}
|
|
}
|