Skip to content

Commit

Permalink
ON-45480 # Make time props nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
jdawg093 committed Dec 4, 2024
1 parent 0270f47 commit 80dcdc0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions OneBlink.SDK/models/NylasBooking.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ public string proposedEventId
{
get; set;
}
public long startTime
public long? startTime
{
get; set;
}
public long endTime
public long? endTime
{
get; set;
}
Expand All @@ -41,11 +41,11 @@ public string location
{
get; set;
}
public long previousStartTime
public long? previousStartTime
{
get; set;
}
public long previousEndTime
public long? previousEndTime
{
get; set;
}
Expand Down

0 comments on commit 80dcdc0

Please sign in to comment.