LMAssembly // Add vChewingLM.ReplacableUserDataType enum.
This commit is contained in:
parent
ed81d80110
commit
ae4efede82
|
@ -12,4 +12,14 @@ public enum vChewingLM {
|
||||||
enum FileErrors: Error {
|
enum FileErrors: Error {
|
||||||
case fileHandleError(String)
|
case fileHandleError(String)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public enum ReplacableUserDataType: String, CaseIterable, Identifiable {
|
||||||
|
public var id: ObjectIdentifier { .init(rawValue as AnyObject) }
|
||||||
|
|
||||||
|
case thePhrases
|
||||||
|
case theFilter
|
||||||
|
case theReplacements
|
||||||
|
case theAssociates
|
||||||
|
case theSymbols
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue