| | 1 | | using System; |
| | 2 | |
|
| | 3 | | namespace DCL.Chat.Notifications |
| | 4 | | { |
| | 5 | | [Serializable] |
| | 6 | | public class ChatNotificationMessageComponentModel : BaseComponentModel |
| | 7 | | { |
| | 8 | | public int maxHeaderCharacters; |
| | 9 | | public int maxContentCharacters; |
| | 10 | | public int maxSenderCharacters; |
| | 11 | |
|
| | 12 | | public string message; |
| | 13 | | public string time; |
| | 14 | | public string messageHeader; |
| | 15 | | public string messageSender; |
| | 16 | | public bool isPrivate; |
| | 17 | | public bool isFriendRequest; |
| | 18 | | public string imageUri; |
| | 19 | | public string notificationTargetId; |
| 22 | 20 | | public bool isImageVisible = true; |
| 22 | 21 | | public bool isDockedLeft = true; |
| | 22 | | public bool isOwnPlayerMentioned; |
| | 23 | | } |
| | 24 | | } |