Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

17 righe
214 B

  1. //
  2. // File.swift
  3. //
  4. //
  5. // Created by Michiel Carman on 9/24/24.
  6. //
  7. import Foundation
  8. import Vapor
  9. import Fluent
  10. final class User: Model {
  11. @ID var id: UUID?
  12. @Field(key: "name") var name: String
  13. }