MOFollowAnchorModel.m 337 B

1234567891011121314151617181920
  1. //
  2. // MOFollowAnchorModel.m
  3. // MiMoLive
  4. //
  5. // Created by MiMo on 2025/6/16.
  6. //
  7. #import "MOFollowAnchorModel.h"
  8. @implementation MOFollowAnchorModel
  9. - (id)initWithCoder:(NSCoder *)aDecoder {
  10. return [self modelInitWithCoder:aDecoder];
  11. }
  12. - (void)encodeWithCoder:(NSCoder *)aCoder {
  13. [self modelEncodeWithCoder:aCoder];
  14. }
  15. @end