mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 01:47:41 +00:00
9 lines
219 B
C#
9 lines
219 B
C#
namespace WinStudentGoalTracker.DataAccess;
|
|
|
|
public class dbProgressReportGoalRow
|
|
{
|
|
public required Guid GoalId { get; set; }
|
|
public string? Category { get; set; }
|
|
public string? Description { get; set; }
|
|
}
|