We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c980a49 commit 5378441Copy full SHA for 5378441
Networking/Networking/Model/Site.swift
@@ -7,23 +7,23 @@ public struct Site: Decodable {
7
8
/// WordPress.com Site Identifier.
9
///
10
- let siteID: Int
+ public let siteID: Int
11
12
/// Site's Name.
13
14
- let name: String
+ public let name: String
15
16
/// Site's Description.
17
18
- let description: String
+ public let description: String
19
20
/// Site's URL.
21
22
- let url: String
+ public let url: String
23
24
/// Indicates if this site hosts a WordPress Store.
25
26
- let isWordPressStore: Bool
+ public let isWordPressStore: Bool
27
28
29
/// Designated Initializer.
0 commit comments