12345678910111213141516171819202122 |
- //
- // Medal+CoreDataClass.h
- //
- //
- // Created by 翟玉磊 on 2021/7/16.
- //
- //
- #import <Foundation/Foundation.h>
- #import <CoreData/CoreData.h>
- @class User;
- NS_ASSUME_NONNULL_BEGIN
- @interface Medal : NSManagedObject
- @end
- NS_ASSUME_NONNULL_END
- #import "Medal+CoreDataProperties.h"
|