Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

20 rader
300 B

  1. import Fluent
  2. import Vapor
  3. final class Todo: Model, Content {
  4. static let schema = "todos"
  5. @ID(key: .id)
  6. var id: UUID?
  7. @Field(key: "title")
  8. var title: String
  9. init() { }
  10. init(id: UUID? = nil, title: String) {
  11. self.id = id
  12. self.title = title
  13. }
  14. }