mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
14 lines
273 B
C#
14 lines
273 B
C#
|
|
|
|
namespace Model.CustomGradebookColumns {
|
|
|
|
public struct ColumnDatumModel {
|
|
|
|
[JsonPropertyName("content")]
|
|
public string Content { get; set; }
|
|
|
|
[JsonPropertyName("user_id")]
|
|
public ulong UserId { get; set; }
|
|
}
|
|
}
|