mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
reformatted models
This commit is contained in:
@@ -1,13 +1,12 @@
|
||||
|
||||
|
||||
namespace Model.CustomGradebookColumns {
|
||||
|
||||
public struct ColumnDatumModel {
|
||||
|
||||
[JsonPropertyName("content")]
|
||||
public string Content { get; set; }
|
||||
|
||||
[JsonPropertyName("user_id")]
|
||||
public ulong UserId { get; set; }
|
||||
}
|
||||
namespace CanvasModel.CustomGradebookColumns;
|
||||
public struct ColumnDatumModel
|
||||
{
|
||||
|
||||
[JsonPropertyName("content")]
|
||||
public string Content { get; set; }
|
||||
|
||||
[JsonPropertyName("user_id")]
|
||||
public ulong UserId { get; set; }
|
||||
}
|
||||
|
||||
@@ -1,25 +1,24 @@
|
||||
|
||||
|
||||
namespace Model.CustomGradebookColumns {
|
||||
|
||||
public class CustomColumnModel {
|
||||
|
||||
[JsonPropertyName("id")]
|
||||
public ulong Id { get; set; }
|
||||
|
||||
[JsonPropertyName("teacher_notes")]
|
||||
public bool? TeacherNotes { get; set; }
|
||||
|
||||
[JsonPropertyName("title")]
|
||||
public string Title { get; set; }
|
||||
|
||||
[JsonPropertyName("position")]
|
||||
public int? Position { get; set; }
|
||||
|
||||
[JsonPropertyName("hidden")]
|
||||
public bool? Hidden { get; set; }
|
||||
|
||||
[JsonPropertyName("read_only")]
|
||||
public bool? ReadOnly { get; set; }
|
||||
}
|
||||
namespace CanvasModel.CustomGradebookColumns;
|
||||
public class CustomColumnModel
|
||||
{
|
||||
|
||||
[JsonPropertyName("id")]
|
||||
public ulong Id { get; set; }
|
||||
|
||||
[JsonPropertyName("teacher_notes")]
|
||||
public bool? TeacherNotes { get; set; }
|
||||
|
||||
[JsonPropertyName("title")]
|
||||
public string Title { get; set; }
|
||||
|
||||
[JsonPropertyName("position")]
|
||||
public int? Position { get; set; }
|
||||
|
||||
[JsonPropertyName("hidden")]
|
||||
public bool? Hidden { get; set; }
|
||||
|
||||
[JsonPropertyName("read_only")]
|
||||
public bool? ReadOnly { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user