Initial project setup.

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Jeroen Leenarts
2018-05-23 21:49:10 +02:00
parent 5b6b71c6e8
commit ae73b78935
31 changed files with 1836 additions and 1 deletions
@@ -0,0 +1,16 @@
//
// Profile+CoreDataClass.swift
// Wireguard
//
// Created by Jeroen Leenarts on 23-05-18.
// Copyright © 2018 Wireguard. All rights reserved.
//
//
import Foundation
import CoreData
@objc(Profile)
public class Profile: NSManagedObject {
}
@@ -0,0 +1,19 @@
//
// Profile+CoreDataProperties.swift
// Wireguard
//
// Created by Jeroen Leenarts on 23-05-18.
// Copyright © 2018 Wireguard. All rights reserved.
//
//
import Foundation
import CoreData
extension Profile {
@nonobjc public class func fetchRequest() -> NSFetchRequest<Profile> {
return NSFetchRequest<Profile>(entityName: "Profile")
}
}
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<model type="com.apple.IDECoreDataModeler.DataModel" documentVersion="1.0" lastSavedToolsVersion="14133" systemVersion="17E202" minimumToolsVersion="Automatic" sourceLanguage="Swift" userDefinedModelVersionIdentifier="">
<entity name="Profile" representedClassName="Profile" syncable="YES"/>
<elements>
<element name="Profile" positionX="-63" positionY="-18" width="128" height="45"/>
</elements>
</model>