Skip to content

Commit c524eef

Browse files
authored
Merge pull request #45 from roblack/make-variants-public
Make variant properties accessible
2 parents 04866fa + a76245c commit c524eef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/Types+Media.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,13 @@ extension Media {
9292

9393
public struct Variant: Codable {
9494
/// Bitrate of the media resource
95-
var bitRate: Int?
95+
public var bitRate: Int?
9696

9797
/// Type of media
98-
var contentType: MediaType
98+
public var contentType: MediaType
9999

100100
/// URL to the media content
101-
var url: String
101+
public var url: String
102102
}
103103
}
104104

0 commit comments

Comments
 (0)