123456789101112131415161718192021 |
- //
- // ASPointDetailModel.m
- // Asteria
- //
- // Created by iOS on 2023/6/24.
- //
- #import "ASPointDetailModel.h"
- @implementation ASPointDetailModel
- + (ASPointDetailModel *)demoData {
- ASPointDetailModel *m = [ASPointDetailModel new];
- m.title = @"DAILY FRIST LOGIN";
- m.time = @"Sep 6, 2022 5:18 pm";
- m.point = @"+10";
- m.elsePoint = @"5600";
- return m;
- }
- @end
|