1234567891011121314151617181920212223242526 |
- //
- // Medal+CoreDataProperties.h
- //
- //
- // Created by 翟玉磊 on 2021/7/16.
- //
- //
- #import "Medal+CoreDataClass.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface Medal (CoreDataProperties)
- + (NSFetchRequest<Medal *> *)fetchRequest;
- @property (nullable, nonatomic, copy) NSString *medalImage;
- @property (nullable, nonatomic, copy) NSString *medalId;
- @property (nullable, nonatomic, copy) NSString *medalName;
- @property (nullable, nonatomic, copy) NSString *medalIcon;
- @property (nullable, nonatomic, retain) User *user;
- @end
- NS_ASSUME_NONNULL_END
|