Guest User

Untitled

a guest
May 17th, 2018
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. import Foundation
  2. import Vapor
  3. import Fluent
  4. import FluentSQLite
  5. import Authentication
  6.  
  7. struct User: Content, SQLiteUUIDModel, Migration {
  8. var id: UUID?
  9. private(set) var email: String
  10. private(set) var password: String
  11. }
Add Comment
Please, Sign In to add comment