mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 15:48:32 -06:00
17 lines
329 B
C#
17 lines
329 B
C#
namespace CanvasModel.Assignments;
|
|
|
|
public record CanvasRubricRating
|
|
(
|
|
[property: JsonPropertyName("points")]
|
|
double Points,
|
|
|
|
[property: JsonPropertyName("id")]
|
|
string Id,
|
|
|
|
[property: JsonPropertyName("description")]
|
|
string Description,
|
|
|
|
[property: JsonPropertyName("long_description")]
|
|
string LongDescription
|
|
);
|