mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 06:27:37 +00:00
Added Goals fields
This commit is contained in:
@@ -5,4 +5,5 @@ public class AddProgressEventDto
|
||||
public Guid GoalId { get; set; }
|
||||
public string? Content { get; set; }
|
||||
public bool IsSensitive { get; set; }
|
||||
public List<Guid>? BenchmarkIds { get; set; }
|
||||
}
|
||||
|
||||
@@ -6,4 +6,5 @@ public class CreateGoalDto
|
||||
public string? Category { get; set; }
|
||||
public string? Baseline { get; set; }
|
||||
public Guid? GoalParentId { get; set; }
|
||||
public DateTime? TargetCompletionDate { get; set; }
|
||||
}
|
||||
|
||||
@@ -5,4 +5,8 @@ public class UpdateGoalDto
|
||||
public string? Description { get; set; }
|
||||
public string? Category { get; set; }
|
||||
public string? Baseline { get; set; }
|
||||
public DateTime? TargetCompletionDate { get; set; }
|
||||
public DateTime? CloseDate { get; set; }
|
||||
public bool? Achieved { get; set; }
|
||||
public string? CloseNotes { get; set; }
|
||||
}
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
namespace WinStudentGoalTracker.DataAccess;
|
||||
|
||||
public class UpdateProgressEventDto
|
||||
{
|
||||
public string? Content { get; set; }
|
||||
public List<Guid>? BenchmarkIds { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user