This commit is contained in:
2026-03-04 17:08:03 -08:00
parent 6e73012430
commit 69f68cc391
9 changed files with 136 additions and 6 deletions
@@ -0,0 +1,9 @@
namespace WinStudentGoalTracker.Models;
public class ProgressEventResponse
{
public Guid ProgressEventId { get; set; }
public string? Content { get; set; }
public DateTime? CreatedAt { get; set; }
public string? CreatedByName { get; set; }
}