13 lines
256 B
Swift
13 lines
256 B
Swift
//
|
|
// Copyright 2024 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public enum LocalUserDisplayMode: UInt {
|
|
// We should use this value by default.
|
|
case asUser = 0
|
|
case noteToSelf
|
|
case asLocalUser
|
|
}
|