mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-15 05:56:37 +08:00
14 lines
376 B
C#
14 lines
376 B
C#
using Yi.Framework.AiHub.Domain.Shared.Enums;
|
|
using Yi.Framework.Ddd.Application.Contracts;
|
|
|
|
namespace Yi.Framework.AiHub.Application.Contracts.Dtos;
|
|
|
|
public class SessionGetListInput : PagedAllResultRequestDto
|
|
{
|
|
public string? SessionTitle { get; set; }
|
|
|
|
/// <summary>
|
|
/// 会话类型
|
|
/// </summary>
|
|
public SessionTypeEnum? SessionType { get; set; }
|
|
} |