23 lines
468 B
Objective-C
Executable File
23 lines
468 B
Objective-C
Executable File
//
|
|
// YYJYRelationModel.h
|
|
// YaYin
|
|
//
|
|
// Created by bj_szd on 2023/7/26.
|
|
// Copyright © 2023 YaYin. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface YYJYRelationModel : NSObject
|
|
|
|
@property (nonatomic, copy) NSString *id;//列表ID
|
|
@property (nonatomic, copy) NSString *name;//名称
|
|
@property (nonatomic, copy) NSString *day;//天数
|
|
@property (nonatomic, copy) NSString *color;//颜色
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|