Created
June 9, 2020 21:47
-
-
Save TheFo2sh/7026cd58d97edab9ee65c29ebd982171 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct TimeSlotChromosome | |
{ | |
public TimeSpan StartAt { get; set; } | |
public TimeSpan EndAt => StartAt.Add(TimeSpan.FromHours(3)); | |
public string CourseId { get; set; } | |
public string PlaceId { get; set; } | |
public string TeacherId { get; set; } | |
public List<string> Students { get; set; } | |
public int Day { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment