| 12345678910111213141516171819202122 | 
							- //
 
- //  ASPointDetailModel.h
 
- //  Asteria
 
- //
 
- //  Created by iOS on 2023/6/24.
 
- //
 
- #import <Foundation/Foundation.h>
 
- NS_ASSUME_NONNULL_BEGIN
 
- @interface ASPointDetailModel : NSObject
 
- @property (nonatomic, copy) NSString *points_delta;
 
- @property (nonatomic, copy) NSString *points_balance;
 
- @property (nonatomic, copy) NSString *comment;
 
- @property (nonatomic, copy) NSString *created_at;
 
- @end
 
- NS_ASSUME_NONNULL_END
 
 
  |