mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
15 lines
343 B
C#
15 lines
343 B
C#
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace Model.Gradebook {
|
|
|
|
public class SubmissionHistoryModel {
|
|
|
|
[JsonPropertyName("submission_id")]
|
|
public ulong SubmissionId { get; set; }
|
|
|
|
[JsonPropertyName("versions")]
|
|
public IEnumerable<SubmissionVersionModel>? Versions { get; set; }
|
|
}
|
|
} |