Teacher editor

This commit is contained in:
2023-03-12 17:52:17 +01:00
Unverified
parent 95364c8a31
commit 3cc4ea5b4b
28 changed files with 947 additions and 93 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TimetableDesigner.Core
{
internal enum TimetableSpansCollision
{
CheckedSlotBefore,
CheckedSlotAfter,
CheckedSlotIn,
CheckedSlotFromIn,
CheckedSlotToIn
}
}