Skip to content

Instantly share code, notes, and snippets.

@TheFo2sh
Created June 9, 2020 21:47
Show Gist options
  • Save TheFo2sh/7026cd58d97edab9ee65c29ebd982171 to your computer and use it in GitHub Desktop.
Save TheFo2sh/7026cd58d97edab9ee65c29ebd982171 to your computer and use it in GitHub Desktop.
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