TableCertificates+CoreDataProperties.m 434 B

12345678910111213141516171819
  1. //
  2. // TableCertificates+CoreDataProperties.m
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 17/02/17.
  6. // Copyright © 2017 TWS. All rights reserved.
  7. //
  8. #import "TableCertificates+CoreDataProperties.h"
  9. @implementation TableCertificates (CoreDataProperties)
  10. + (NSFetchRequest<TableCertificates *> *)fetchRequest {
  11. return [[NSFetchRequest alloc] initWithEntityName:@"TableCertificates"];
  12. }
  13. @dynamic certificateLocation;
  14. @end