AgoraChatSDK 1.2.0
AgoraChatSilentModeTime.h
1//
2// AgoraChatSilentModeTime.h
3// AgoraChat
4//
5// Created by hxq on 2022/3/30.
6// Copyright © 2022 easemob.com. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
17@interface AgoraChatSilentModeTime : NSObject <NSCopying,NSCoding>
23@property (nonatomic, assign, readonly) int hours;
29@property (nonatomic, assign, readonly) int minutes;
30
40- (instancetype)initWithHours:(int)aHours minutes:(int)aMinutes;
41@end
42
43NS_ASSUME_NONNULL_END
Definition: AgoraChatSilentModeTime.h:17
int minutes
Definition: AgoraChatSilentModeTime.h:29
int hours
Definition: AgoraChatSilentModeTime.h:23