Skip to content

Commit

Permalink
newlines in attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
tj_devel709 committed Jul 23, 2021
1 parent 7ec97c4 commit 0003b4a
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions src/shazamkit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -118,40 +118,50 @@ interface SHMatchedMediaItem : NSSecureCoding
[DisableDefaultCtor]
interface SHMediaItem : NSSecureCoding, NSCopying
{
[NullAllowed, Export ("shazamID")]
[NullAllowed]
[Export ("shazamID")]
string ShazamId { get; }

[NullAllowed, Export ("title")]
[NullAllowed]
[Export ("title")]
string Title { get; }

[NullAllowed, Export ("subtitle")]
[NullAllowed]
[Export ("subtitle")]
string Subtitle { get; }

[NullAllowed, Export ("artist")]
[NullAllowed]
[Export ("artist")]
string Artist { get; }

[Export ("genres", ArgumentSemantic.Strong)]
string[] Genres { get; }

[NullAllowed, Export ("appleMusicID")]
[NullAllowed]
[Export ("appleMusicID")]
string AppleMusicId { get; }

[NullAllowed, Export ("appleMusicURL", ArgumentSemantic.Strong)]
[NullAllowed]
[Export ("appleMusicURL", ArgumentSemantic.Strong)]
NSUrl AppleMusicUrl { get; }

[NullAllowed, Export ("webURL", ArgumentSemantic.Strong)]
[NullAllowed]
[Export ("webURL", ArgumentSemantic.Strong)]
NSUrl WebUrl { get; }

[NullAllowed, Export ("artworkURL", ArgumentSemantic.Strong)]
[NullAllowed]
[Export ("artworkURL", ArgumentSemantic.Strong)]
NSUrl ArtworkUrl { get; }

[NullAllowed, Export ("videoURL", ArgumentSemantic.Strong)]
[NullAllowed]
[Export ("videoURL", ArgumentSemantic.Strong)]
NSUrl VideoUrl { get; }

[Export ("explicitContent")]
bool ExplicitContent { get; }

[NullAllowed, Export ("isrc")]
[NullAllowed]
[Export ("isrc")]
string Isrc { get; }

[Export ("mediaItemWithProperties:")]
Expand Down

0 comments on commit 0003b4a

Please sign in to comment.