Files
Yi.Admin/Yi.Abp.Net8/module/ai-hub/Yi.Framework.AiHub.Application.Contracts/Dtos/SessionCreateAndUpdateInput.cs

15 lines
420 B
C#
Raw Normal View History

2026-01-07 22:25:54 +08:00
using Yi.Framework.AiHub.Domain.Shared.Enums;
namespace Yi.Framework.AiHub.Application.Contracts.Dtos;
2025-06-21 13:02:38 +08:00
2025-06-21 13:20:13 +08:00
public class SessionCreateAndUpdateInput
2025-06-21 13:02:38 +08:00
{
public string SessionTitle { get; set; }
public string SessionContent { get; set; }
2025-06-22 19:09:13 +08:00
public string? Remark { get; set; }
2026-01-07 22:25:54 +08:00
/// <summary>
/// 会话类型
/// </summary>
public SessionTypeEnum SessionType { get; set; } = SessionTypeEnum.Chat;
2025-06-21 13:02:38 +08:00
}