mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 04:07:39 +00:00
9 lines
219 B
C#
9 lines
219 B
C#
namespace WinStudentGoalTracker.DataAccess;
|
|
|
|
public class CreateBenchmarkDto
|
|
{
|
|
public Guid GoalId { get; set; }
|
|
public string Benchmark { get; set; } = string.Empty;
|
|
public string? ShortName { get; set; }
|
|
}
|