Skip to content

Commit

Permalink
update snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaslagoni committed Aug 13, 2024
1 parent b188a3a commit a4a594e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public static class OrderStatusExtensions
return null;
}
public static OrderStatus? ToOrderStatus(int? value)
public static OrderStatus? ToOrderStatus(dynamic? value)
{
switch (value)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ public static class StatesExtensions
return null;
}
public static States? ToStates(string? value)
public static States? ToStates(dynamic? value)
{
switch (value)
{
Expand Down

0 comments on commit a4a594e

Please sign in to comment.