mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 15:48:32 -06:00
15 lines
306 B
C#
15 lines
306 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
|
|
namespace Model.Gradebook {
|
|
|
|
public class DayModel {
|
|
|
|
[JsonPropertyName("date")]
|
|
public DateTime Date { get; set; }
|
|
|
|
[JsonPropertyName("graders")]
|
|
public IEnumerable<GraderModel> Graders { get; set; }
|
|
}
|
|
} |