mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
16 lines
327 B
C#
16 lines
327 B
C#
namespace CanvasModel.Assignments;
|
|
|
|
public record RubricRatingModel
|
|
(
|
|
[property: JsonPropertyName("points")]
|
|
double Points,
|
|
|
|
[property: JsonPropertyName("id")]
|
|
string Id,
|
|
|
|
[property: JsonPropertyName("description")]
|
|
string Description,
|
|
|
|
[property: JsonPropertyName("long_description")]
|
|
string LongDescription
|
|
); |