// // Address+CoreDataProperties.swift // WireGuard // // Created by Jeroen Leenarts on 24-05-18. // Copyright © 2018 WireGuard. All rights reserved. // // import Foundation import CoreData extension Address { @nonobjc public class func fetchRequest() -> NSFetchRequest
{ return NSFetchRequest
(entityName: "Address") } @NSManaged public var address: String? @NSManaged public var interface: Interface? }