mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
22 lines
459 B
C#
22 lines
459 B
C#
public class DeserializationTests
|
|
{
|
|
[Test]
|
|
public void TestTerm()
|
|
{
|
|
|
|
var canvasContentResponse = @"{
|
|
""enrollment_terms"": [
|
|
{
|
|
""id"": 1,
|
|
""name"": ""one"",
|
|
""start_at"": 2022-01-01T00:00:00Z,
|
|
""end_at"": 2022-02-01T00:00:00Z,
|
|
""created_at"": ""2011-04-26T23:34:35Z"",
|
|
""workflow_state"": ""active"",
|
|
""grading_period_group_id"": null
|
|
},
|
|
}";
|
|
|
|
|
|
}
|
|
} |