Returns true if the input DateTimes are on the same day, ignoring the time.
bool isSameDay(DateTime input) { return input.year == year && input.month == month && input.day == day; }