mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
13 lines
223 B
C#
13 lines
223 B
C#
|
|
|
|
namespace CanvasModel.CustomGradebookColumns;
|
|
public struct ColumnDatumModel
|
|
{
|
|
|
|
[JsonPropertyName("content")]
|
|
public string Content { get; set; }
|
|
|
|
[JsonPropertyName("user_id")]
|
|
public ulong UserId { get; set; }
|
|
}
|