namespace AIAssistantModule.Core.Dtos.Admin { public class AIAssistantRequestDto { public string Name { get; set; } public string Prompt { get; set; } = @"Add a new GET endpoint /ping that returns pong"; public string ProjectPath { get; set; } = @"D:\@Projects\@@ [AI]\workspace"; } }