| 1234567891011121314151617181920 |
- //
- // MOFollowAnchorModel.m
- // MiMoLive
- //
- // Created by MiMo on 2025/6/16.
- //
- #import "MOFollowAnchorModel.h"
- @implementation MOFollowAnchorModel
- - (id)initWithCoder:(NSCoder *)aDecoder {
- return [self modelInitWithCoder:aDecoder];
- }
- - (void)encodeWithCoder:(NSCoder *)aCoder {
- [self modelEncodeWithCoder:aCoder];
- }
- @end
|