Added persistent prompt to student progress report

This commit is contained in:
ivan-pelly
2026-04-10 15:31:56 -07:00
parent d4a580ffae
commit b287276ec0
21 changed files with 606 additions and 11 deletions
@@ -0,0 +1,8 @@
namespace WinStudentGoalTracker.DataAccess;
public class CreateReportPromptDto
{
public string? ProgramId { get; set; }
public string? Prompt { get; set; }
public string? Reportname { get; set; }
}
@@ -0,0 +1,7 @@
namespace WinStudentGoalTracker.DataAccess;
public class UpdateReportPromptDto
{
public string? Prompt { get; set; }
public string? Reportname { get; set; }
}