mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
20 lines
434 B
C#
20 lines
434 B
C#
using System;
|
|
|
|
|
|
namespace Model.Courses {
|
|
|
|
public class TermModel {
|
|
|
|
[JsonPropertyName("id")]
|
|
public ulong Id { get; set; }
|
|
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; }
|
|
|
|
[JsonPropertyName("start_at")]
|
|
public DateTime? StartAt { get; set; }
|
|
|
|
[JsonPropertyName("end_at")]
|
|
public DateTime? EndAt { get; set; }
|
|
}
|
|
} |