Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Swift 0.51 KB | None | 0 0
  1. //
  2. //  Password+CoreDataProperties.swift
  3. //  password
  4. //
  5. //  Created by Bartłomiej Łaski on 24/06/2019.
  6. //  Copyright © 2019 admin. All rights reserved.
  7. //
  8. //
  9.  
  10. import Foundation
  11. import CoreData
  12.  
  13.  
  14. extension Password {
  15.  
  16.     @nonobjc public class func fetchRequest() -> NSFetchRequest<Password> {
  17.         return NSFetchRequest<Password>(entityName: "Password")
  18.     }
  19.  
  20.     @NSManaged public var login: String?
  21.     @NSManaged public var name: String?
  22.     @NSManaged public var password: String?
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement