am syncing assignment groups

This commit is contained in:
2023-08-23 14:06:40 -06:00
parent 8c3ab09f38
commit bbae0c054d
18 changed files with 327 additions and 11 deletions

View File

@@ -0,0 +1,9 @@
namespace LocalModels;
public record LocalAssignmentGroup
{
public ulong? CanvasId { get; init; }
public string Id { get; init; } = string.Empty;
public required string Name { get; init; }
public double Weight { get; init; }
}