Files
real-e-party-iOS/YuMi/Modules/YMMine/Model/UserInfo/XPSoundCardModel.h
edwinQQQ a35a711be6 chore: Initial clean commit
- Removed YuMi/Library/ (138 MB, not tracked)
- Removed YuMi/Resources/ (23 MB, not tracked)
- Removed old version assets (566 files, not tracked)
- Excluded Pods/, xcuserdata/ and other build artifacts
- Clean repository optimized for company server deployment
2025-10-09 16:19:14 +08:00

23 lines
510 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// XPSoundCardModel.h
// xplan-ios
//
// Created by duoban on 2023/1/4.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface XPSoundCardModel : PIBaseModel
@property (nonatomic,copy) NSString *uid;
//音频七牛云url
@property (nonatomic,copy) NSString *audioUrl;
///录音时间
@property (nonatomic,assign) NSInteger second;
//0,没录制1已上传2审核通过3审核不通过4下架
@property (nonatomic,assign) int status;
@end
NS_ASSUME_NONNULL_END