using Microsoft.AspNetCore.Mvc; using xModels.Base; namespace xAiApi.AI.Models.Dtos { /// /// Ai Ask Request Data Transfer Object ... /// public class XAiAskRequestDto : XBaseDto { /// /// Provided Prompt for Ask ... /// [FromQuery] public string Prompt { get; set; } /// /// Ai Selected Project Id, Optional ... /// if null, Use Default Project for Authenticated User ... /// [FromQuery] public string ProjectId { get; set; } = null; /// /// Ai Selected Conversation of Project, Optional ... /// if null, Create new Conversation in Selected Project ... /// [FromQuery] public string ConversationId { get; set; } = null; } }