AgoraChatSDK 1.0.7
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
13@interface AgoraChatSilentModeTime : NSObject <NSCopying,NSCoding>
22@property (nonatomic, assign, readonly) int hours;
31@property (nonatomic, assign, readonly) int minutes;
32
50- (instancetype)initWithHours:(int)aHours minutes:(int)aMinutes;
51@end
52
53NS_ASSUME_NONNULL_END
Definition: AgoraChatSilentModeTime.h:13
int minutes
Definition: AgoraChatSilentModeTime.h:31
int hours
Definition: AgoraChatSilentModeTime.h:22