// // NIMQChatMarkSystemNotificationsReadParam.h // NIMLib // // Created by Netease. // Copyright © 2022 Netease. All rights reserved. // #import #import "NIMQChatSystemNotification.h" /** * 标记系统通知已读的参数中一项的类型 */ @interface NIMQChatMarkSystemNotificationsReadItem : NSObject @property(nonatomic, assign) unsigned long long messageServerId; @property(nonatomic, assign) NIMQChatSystemNotificationType type; @end /** * 标记系统通知已读的参数 */ @interface NIMQChatMarkSystemNotificationsReadParam : NSObject @property(nonnull, nonatomic, copy) NSArray *items; @end