WIP: docs

This commit is contained in:
John Estropia
2020-03-25 14:21:49 +09:00
parent 231e138ab0
commit 0d9299f900
3 changed files with 27 additions and 13 deletions

View File

@@ -40,11 +40,8 @@ extension FieldContainer {
@Field.Stored("species")
var species = ""
@Field.Virtual("pluralName", customGetter: Animal.pluralName(_:))
var pluralName: String = ""
@Field.Coded("color", coder: FieldCoders.Plist.self)
var color: UIColor?
@Field.Stored("nickname")
var nickname: String?
}
```
- Important: `Field` properties are required to be used as `@propertyWrapper`s. Any other declaration not using the `@Field.Stored(...) var` syntax will be ignored.