2025-10-09 16:48:46 +08:00

40 lines
694 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.

//
// NIMBroadcastMessage.h
// NIMLib
//
// Created by Netease.
// Copyright © 2017年 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
* 系统广播
*/
@interface NIMBroadcastMessage : NSObject
/**
* 系统广播 id全局唯一
*/
@property (nonatomic,assign,readonly) int64_t broadcastId;
/**
* 发起者 id
*/
@property (nullable,nonatomic,copy,readonly) NSString *sender;
/**
* 时间
*/
@property (nonatomic,assign,readonly) NSTimeInterval timestamp;
/**
* 内容
*/
@property (nullable,nonatomic,copy,readonly) NSString *content;
@end
NS_ASSUME_NONNULL_END