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; } }