aboutsummaryrefslogtreecommitdiffstats
path: root/Wireguard/Models/Profile+CoreDataProperties.swift
blob: 8e99ac24cd8ed3cb530c41f14fb3095974f010a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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")
    }

}