File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,25 +6,25 @@ import CoreData
6
6
<$if hasCustomBaseCaseImport$>import <$baseClassImport$><$endif$>
7
7
8
8
<$if noninheritedAttributes.@count > 0$>
9
- enum <$managedObjectClassName$>Attributes: String {<$foreach Attribute noninheritedAttributes do$>
9
+ public enum <$managedObjectClassName$>Attributes: String {<$foreach Attribute noninheritedAttributes do$>
10
10
case <$Attribute.name$> = "<$Attribute.name$>"<$endforeach do$>
11
11
}
12
12
<$endif$>
13
13
14
14
<$if noninheritedRelationships.@count > 0$>
15
- enum <$managedObjectClassName$>Relationships: String {<$foreach Relationship noninheritedRelationships do$>
15
+ public enum <$managedObjectClassName$>Relationships: String {<$foreach Relationship noninheritedRelationships do$>
16
16
case <$Relationship.name$> = "<$Relationship.name$>"<$endforeach do$>
17
17
}
18
18
<$endif$>
19
19
20
20
<$if noninheritedFetchedProperties.@count > 0$>
21
- enum <$managedObjectClassName$>FetchedProperties: String {<$foreach FetchedProperty noninheritedFetchedProperties do$>
21
+ public enum <$managedObjectClassName$>FetchedProperties: String {<$foreach FetchedProperty noninheritedFetchedProperties do$>
22
22
case <$FetchedProperty.name$> = "<$FetchedProperty.name$>"<$endforeach do$>
23
23
}
24
24
<$endif$>
25
25
26
26
<$if hasUserInfoKeys$>
27
- enum <$managedObjectClassName$>UserInfo: String {<$foreach UserInfo userInfoKeyValues do$>
27
+ public enum <$managedObjectClassName$>UserInfo: String {<$foreach UserInfo userInfoKeyValues do$>
28
28
case <$UserInfo.key$> = "<$UserInfo.key$>"<$endforeach do$>
29
29
}
30
30
<$endif$>
You can’t perform that action at this time.
0 commit comments