Skip to content
This repository has been archived by the owner on Jun 30, 2022. It is now read-only.

Commit

Permalink
Weather skill and Restaurant Booking skill fixes (#2070)
Browse files Browse the repository at this point in the history
* weather skill fix: make DateTime nullable in TimeZone class

* restaurant booking fix: change name of Reservation.lu to Restaurant.lu
  • Loading branch information
litofish authored and ryanisgrig committed Aug 7, 2019
1 parent 66e4a39 commit 1492f53
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"region": ""
},
{
"id": "Reservation",
"id": "Restaurant",
"name": "",
"appId": "",
"authoringKey": "",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ public class Timezone

public bool IsDaylightSaving { get; set; }

public DateTime NextOffsetChange { get; set; }
public DateTime? NextOffsetChange { get; set; }
}
}

0 comments on commit 1492f53

Please sign in to comment.