TableCertificates+CoreDataProperties.h 493 B

1234567891011121314151617181920212223
  1. //
  2. // TableCertificates+CoreDataProperties.h
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 17/02/17.
  6. // Copyright © 2017 TWS. All rights reserved.
  7. //
  8. #import "TableCertificates+CoreDataClass.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface TableCertificates (CoreDataProperties)
  11. + (NSFetchRequest<TableCertificates *> *)fetchRequest;
  12. @property (nullable, nonatomic, copy) NSString *certificateLocation;
  13. @property (nullable, nonatomic, copy) NSDate *dateRecord;
  14. @end
  15. NS_ASSUME_NONNULL_END