| | 1 | | namespace DCL.Chat.Notifications |
| | 2 | | { |
| | 3 | | public class PrivateChatMessageNotificationModel |
| | 4 | | { |
| 4 | 5 | | public string MessageId { get; } |
| 2 | 6 | | public string TargetId { get; } |
| 8 | 7 | | public string Body { get; } |
| 2 | 8 | | public ulong Timestamp { get; } |
| 5 | 9 | | public string SenderUsername { get; } |
| 6 | 10 | | public string PeerUsername { get; } |
| 6 | 11 | | public string ProfilePicture { get; } |
| 10 | 12 | | public bool ImTheSender { get; } |
| 2 | 13 | | public bool IsOwnPlayerMentioned { get; } |
| | 14 | |
|
| 5 | 15 | | public PrivateChatMessageNotificationModel(string messageId, string targetId, string body, ulong timestamp, stri |
| | 16 | | bool imTheSender, bool isOwnPlayerMentioned, string profilePicture = null) |
| | 17 | | { |
| 5 | 18 | | MessageId = messageId; |
| 5 | 19 | | TargetId = targetId; |
| 5 | 20 | | Body = body; |
| 5 | 21 | | Timestamp = timestamp; |
| 5 | 22 | | SenderUsername = senderUsername; |
| 5 | 23 | | PeerUsername = peerUsername; |
| 5 | 24 | | ImTheSender = imTheSender; |
| 5 | 25 | | IsOwnPlayerMentioned = isOwnPlayerMentioned; |
| 5 | 26 | | ProfilePicture = profilePicture; |
| 5 | 27 | | } |
| | 28 | | } |
| | 29 | | } |