Skip to content

Commit

Permalink
Use correct type for date properties
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbranson authored and jstedfast committed Oct 12, 2011
1 parent 464cdba commit 77c813b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RedLaser/RedLaser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ interface BarcodeResult {
BarcodeResult AssociatedBarcode { get; }

[Export ("firstScanTime", ArgumentSemantic.Retain)]
DateTime FirstScanTime { get; }
NSDate FirstScanTime { get; }

[Export ("mostRecentScanTime", ArgumentSemantic.Retain)]
DateTime MostRecentScanTime { get; }
NSDate MostRecentScanTime { get; }

[Export ("barcodeLocation", ArgumentSemantic.Retain)]
NSObject[] BarcodeLocation { get; }
Expand Down

0 comments on commit 77c813b

Please sign in to comment.