mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
reformatted models
This commit is contained in:
@@ -1,15 +1,11 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace CanvasModel.Gradebook;
|
||||
public class SubmissionHistoryModel
|
||||
{
|
||||
|
||||
[JsonPropertyName("submission_id")]
|
||||
public ulong SubmissionId { get; set; }
|
||||
|
||||
namespace Model.Gradebook {
|
||||
|
||||
public class SubmissionHistoryModel {
|
||||
|
||||
[JsonPropertyName("submission_id")]
|
||||
public ulong SubmissionId { get; set; }
|
||||
|
||||
[JsonPropertyName("versions")]
|
||||
public IEnumerable<SubmissionVersionModel>? Versions { get; set; }
|
||||
}
|
||||
[JsonPropertyName("versions")]
|
||||
public IEnumerable<SubmissionVersionModel>? Versions { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user