20 lines
451 B
C#
20 lines
451 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.Shared.DataContracts
|
|
{
|
|
[DataContract]
|
|
public class AiConversationMessageDC : IDataContract
|
|
{
|
|
public long? Oid { get; set; }
|
|
public string Model { get; set; }
|
|
public string Context { get; set; }
|
|
public string Prompt { get; set; }
|
|
public string Result { get; set; }
|
|
}
|
|
}
|