mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-05 08:46:35 +08:00
11 lines
338 B
C#
11 lines
338 B
C#
|
|
namespace Yi.Framework.AiHub.Application.Contracts.Dtos;
|
|||
|
|
|
|||
|
|
public class MessageInputDto
|
|||
|
|
{
|
|||
|
|
public string Content { get; set; }
|
|||
|
|
public string Role { get; set; }
|
|||
|
|
public decimal DeductCost { get; set; }
|
|||
|
|
public decimal TotalTokens { get; set; }
|
|||
|
|
public string ModelId { get; set; }
|
|||
|
|
public string Remark { get; set; }
|
|||
|
|
}
|