Files

8 lines
237 B
C#
Raw Permalink Normal View History

2025-06-21 13:02:38 +08:00
namespace Yi.Framework.AiHub.Application.Contracts.Dtos;
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; }
2025-06-21 13:02:38 +08:00
}