Created
April 15, 2018 21:36
-
-
Save own2pwn/2a9a3e4b385a2a9ad5a82ae28aa6c1f9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public final class SpendModel: RealmModel { | |
// MARK: - Properties | |
@objc public dynamic var string = "" | |
// MARK: - Init | |
public convenience init(with string: String) { | |
self.init() | |
self.string = string | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment