-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPatientModel+CoreDataProperties.h
37 lines (31 loc) · 1.29 KB
/
PatientModel+CoreDataProperties.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//
// PatientModel+CoreDataProperties.h
// AmikoDesitin
//
// Created by b123400 on 2020/03/19.
// Copyright © 2020 Ywesee GmbH. All rights reserved.
//
//
#import "PatientModel+CoreDataClass.h"
NS_ASSUME_NONNULL_BEGIN
@interface PatientModel (CoreDataProperties)
+ (NSFetchRequest<PatientModel *> *)fetchRequest;
@property (nullable, nonatomic, copy) NSString *birthDate;
@property (nullable, nonatomic, copy) NSString *city;
@property (nullable, nonatomic, copy) NSString *country;
@property (nullable, nonatomic, copy) NSString *emailAddress;
@property (nullable, nonatomic, copy) NSString *familyName;
@property (nullable, nonatomic, copy) NSString *gender;
@property (nullable, nonatomic, copy) NSString *givenName;
@property (nonatomic) int64_t heightCm;
@property (nullable, nonatomic, copy) NSString *phoneNumber;
@property (nullable, nonatomic, copy) NSString *postalAddress;
@property (nullable, nonatomic, copy) NSDate *timestamp;
@property (nullable, nonatomic, copy) NSString *uniqueId;
@property (nonatomic) int64_t weightKg;
@property (nullable, nonatomic, copy) NSString *zipCode;
@property (nullable, nonatomic, copy) NSString *healthCardNumber;
@property (nullable, nonatomic, copy) NSString *insuranceGLN;
@property (nullable, nonatomic, copy) NSString *ahvNumber;
@end
NS_ASSUME_NONNULL_END