2018-05-24 04:21:46 +00:00
|
|
|
//
|
|
|
|
// Address+CoreDataProperties.swift
|
2018-05-24 18:13:21 +00:00
|
|
|
// WireGuard
|
2018-05-24 04:21:46 +00:00
|
|
|
//
|
|
|
|
// Created by Jeroen Leenarts on 24-05-18.
|
2018-07-15 09:55:41 +00:00
|
|
|
// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
|
2018-05-24 04:21:46 +00:00
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
import CoreData
|
|
|
|
|
|
|
|
extension Address {
|
|
|
|
|
|
|
|
@nonobjc public class func fetchRequest() -> NSFetchRequest<Address> {
|
|
|
|
return NSFetchRequest<Address>(entityName: "Address")
|
|
|
|
}
|
|
|
|
|
|
|
|
@NSManaged public var address: String?
|
|
|
|
@NSManaged public var interface: Interface?
|
|
|
|
|
|
|
|
}
|