// // Copyright (c) 2017 Open Whisper Systems. All rights reserved. // #import "OWSAudioAttachmentPlayer.h" #import "OWSMessageEditing.h" #import "OWSMessageMediaAdapter.h" #import NS_ASSUME_NONNULL_BEGIN @class TSAttachmentStream; @interface TSVideoAttachmentAdapter : JSQVideoMediaItem @property NSString *attachmentId; @property (nonatomic, strong) NSString *contentType; - (instancetype)initWithAttachment:(TSAttachmentStream *)attachment incoming:(BOOL)incoming; - (BOOL)isAudio; - (BOOL)isVideo; @end NS_ASSUME_NONNULL_END