mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
9 lines
212 B
C#
9 lines
212 B
C#
using CanvasModel.EnrollmentTerms;
|
|
|
|
public interface IConfigurationManagement
|
|
{
|
|
SemesterConfiguration? Configuration { get; }
|
|
|
|
void SetConfiguration(EnrollmentTermModel canvasTerm, DayOfWeek[] daysOfWeek);
|
|
}
|