ChatRoomForGpt/ARW-net/ARW.Model/Dto/Business/Chat/ChatGPT/ChatGPTDto.cs
2023-04-04 18:15:13 +08:00

26 lines
529 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ARW.Model.Chat.ChatGPT
{
/// <summary>
/// Chat GPT传输对象
/// </summary>
public class CahtGPTDto
{
public long SenderGuId { get; set; }
public long ReceiverGuId { get; set; }
public string Content { get; set; }
}
/// <summary>
/// 查询对象
/// </summary>
public class ChatGPTQueryDto : PagerInfo
{
public long? UserGuId { get; set; }
}
}