16 lines
353 B
C#
16 lines
353 B
C#
using System.Text.Json;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Serialization;
|
|
|
|
namespace Nop.Plugin.Misc.FruitBankPlugin.Models
|
|
{
|
|
public class OpenAIGpt4MiniAIChatRequest : AIChatRequestBase
|
|
{
|
|
//If any specific properties are needed for this derived class, add them here. - A.
|
|
//Needed only for gpt-5
|
|
|
|
}
|
|
|
|
}
|
|
|