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