2026-01-07 22:25:54 +08:00
|
|
|
|
using Yi.Framework.AiHub.Domain.Shared.Enums;
|
|
|
|
|
|
using Yi.Framework.Ddd.Application.Contracts;
|
2025-06-21 13:02:38 +08:00
|
|
|
|
|
2025-06-21 13:20:13 +08:00
|
|
|
|
namespace Yi.Framework.AiHub.Application.Contracts.Dtos;
|
|
|
|
|
|
|
2026-01-07 22:25:54 +08:00
|
|
|
|
public class SessionGetListInput : PagedAllResultRequestDto
|
2025-06-21 13:02:38 +08:00
|
|
|
|
{
|
2025-06-21 13:15:14 +08:00
|
|
|
|
public string? SessionTitle { get; set; }
|
2026-01-07 22:25:54 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 会话类型
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public SessionTypeEnum? SessionType { get; set; }
|
2025-06-21 13:02:38 +08:00
|
|
|
|
}
|