23 lines
483 B
Swift
23 lines
483 B
Swift
//
|
|
// Address+CoreDataProperties.swift
|
|
// WireGuard
|
|
//
|
|
// Created by Jeroen Leenarts on 24-05-18.
|
|
// Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All rights reserved.
|
|
//
|
|
//
|
|
|
|
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?
|
|
|
|
}
|