mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-05 00:37:21 +08:00
13 lines
384 B
C#
13 lines
384 B
C#
|
|
using Volo.Abp.Application.Dtos;
|
|||
|
|
|
|||
|
|
namespace Yi.Framework.AiHub.Application.Contracts.Dtos;
|
|||
|
|
|
|||
|
|
public class MessageDto : FullAuditedEntityDto<Guid>
|
|||
|
|
{
|
|||
|
|
public Guid UserId { get; set; }
|
|||
|
|
public Guid SessionId { get; set; }
|
|||
|
|
public string Content { get; set; }
|
|||
|
|
public string Role { get; set; }
|
|||
|
|
public string ModelId { get; set; }
|
|||
|
|
public string Remark { get; set; }
|
|||
|
|
}
|