22 lines
485 B
C
22 lines
485 B
C
//
|
|
// Copyright 2022-2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
// Please see LICENSE in the repository root for full details.
|
|
//
|
|
|
|
#ifndef EventEncryptionDecoration_h
|
|
#define EventEncryptionDecoration_h
|
|
|
|
/**
|
|
Decoration used alongside encrypted events
|
|
*/
|
|
typedef NS_ENUM(NSUInteger, EventEncryptionDecoration)
|
|
{
|
|
EventEncryptionDecorationNone,
|
|
EventEncryptionDecorationGrey,
|
|
EventEncryptionDecorationRed
|
|
};
|
|
|
|
#endif /* EventEncryptionDecoration_h */
|