mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
9 lines
266 B
Python
9 lines
266 B
Python
from enum import Enum
|
||
|
||
|
||
class Messaging(Enum):
|
||
WELCOME_GROUP_MESSAGE = "Welcome to the beginning of the "
|
||
CONTACT_REQUEST_SENT = 'Contact Request Sent'
|
||
NO_FRIENDS_ITEM = 'You don’t have any contacts yet'
|
||
NEW_CONTACT_REQUEST = 'New Contact Request'
|