mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
31 lines
754 B
C#
31 lines
754 B
C#
namespace CanvasModel.Assignments;
|
|
|
|
public record CanvasRubricCriteria
|
|
(
|
|
[property: JsonPropertyName("id")]
|
|
string Id,
|
|
|
|
[property: JsonPropertyName("description")]
|
|
string Description,
|
|
|
|
[property: JsonPropertyName("long_description")]
|
|
string LongDescription,
|
|
|
|
[property: JsonPropertyName("points")]
|
|
double? Points,
|
|
[property: JsonPropertyName("learning_outcome_id")]
|
|
string? LearningOutcomeId,
|
|
|
|
[property: JsonPropertyName("vendor_guid")]
|
|
string? VendorGuid,
|
|
|
|
[property: JsonPropertyName("criterion_use_range")]
|
|
bool? CriterionUseRange = null,
|
|
|
|
[property: JsonPropertyName("ratings")]
|
|
IEnumerable<CanvasRubricRating>? Ratings = null,
|
|
|
|
[property: JsonPropertyName("ignore_for_scoring")]
|
|
bool? IgnoreForScoring = null
|
|
);
|