@@ -29,7 +29,7 @@ open class BlogSettings: NSManagedObject {
29
29
30
30
/// Stores the Blog's Icon Media ID
31
31
///
32
- @NSManaged var iconMediaID : NSNumber ?
32
+ @NSManaged public var iconMediaID : NSNumber ?
33
33
34
34
/// Stores the Blog's GMT offset
35
35
///
@@ -174,27 +174,27 @@ open class BlogSettings: NSManagedObject {
174
174
175
175
/// Indicates the style to use for the sharing buttons on a particular blog
176
176
///
177
- @NSManaged var sharingButtonStyle : String
177
+ @NSManaged public var sharingButtonStyle : String
178
178
179
179
/// The title of the sharing label on the user's blog.
180
180
///
181
- @NSManaged var sharingLabel : String
181
+ @NSManaged public var sharingLabel : String
182
182
183
183
/// Indicates the twitter username to use when sharing via Twitter
184
184
///
185
- @NSManaged var sharingTwitterName : String
185
+ @NSManaged public var sharingTwitterName : String
186
186
187
187
/// Indicates whether related posts should show thumbnails.
188
188
///
189
189
@NSManaged var sharingCommentLikesEnabled : Bool
190
190
191
191
/// Indicates whether sharing via post likes has been disabled
192
192
///
193
- @NSManaged var sharingDisabledLikes : Bool
193
+ @NSManaged public var sharingDisabledLikes : Bool
194
194
195
195
/// Indicates whether sharing by reblogging has been disabled
196
196
///
197
- @NSManaged var sharingDisabledReblogs : Bool
197
+ @NSManaged public var sharingDisabledReblogs : Bool
198
198
199
199
// MARK: AMP
200
200
0 commit comments