aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard/Models/Peer+CoreDataProperties.swift
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--WireGuard/Models/Peer+CoreDataProperties.swift21
1 files changed, 0 insertions, 21 deletions
diff --git a/WireGuard/Models/Peer+CoreDataProperties.swift b/WireGuard/Models/Peer+CoreDataProperties.swift
deleted file mode 100644
index 50132e7..0000000
--- a/WireGuard/Models/Peer+CoreDataProperties.swift
+++ /dev/null
@@ -1,21 +0,0 @@
-//
-// Copyright © 2018 WireGuard LLC. All rights reserved.
-//
-
-import Foundation
-import CoreData
-
-extension Peer {
-
- @nonobjc public class func fetchRequest() -> NSFetchRequest<Peer> {
- return NSFetchRequest<Peer>(entityName: "Peer")
- }
-
- @NSManaged public var publicKey: String?
- @NSManaged public var presharedKey: String?
- @NSManaged public var allowedIPs: String?
- @NSManaged public var endpoint: String?
- @NSManaged public var persistentKeepalive: Int32
- @NSManaged public var tunnel: Tunnel?
-
-}