mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
10 lines
249 B
C#
10 lines
249 B
C#
using System.Collections.Generic;
|
|
|
|
|
|
namespace Model.GradingPeriods {
|
|
public class RedundantGradingPeriodResponse {
|
|
[JsonPropertyName("grading_periods")]
|
|
public IEnumerable<GradingPeriodModel> GradingPeriods { get; set; }
|
|
}
|
|
}
|