| | 1 | | using JetBrains.Annotations; |
| | 2 | |
|
| | 3 | | namespace DCL.Chat.Notifications |
| | 4 | | { |
| | 5 | | public class PrivateChatMessageNotificationModel |
| | 6 | | { |
| 0 | 7 | | public string MessageId { get; } |
| 0 | 8 | | public string SenderId { get; } |
| 0 | 9 | | public string Body { get; } |
| 0 | 10 | | public ulong Timestamp { get; } |
| 0 | 11 | | [CanBeNull] public string Username { get; } |
| 0 | 12 | | [CanBeNull] public string ProfilePicture { get; } |
| | 13 | |
|
| 3 | 14 | | public PrivateChatMessageNotificationModel(string messageId, string senderId, string body, ulong timestamp, stri |
| | 15 | | { |
| 3 | 16 | | MessageId = messageId; |
| 3 | 17 | | SenderId = senderId; |
| 3 | 18 | | Body = body; |
| 3 | 19 | | Timestamp = timestamp; |
| 3 | 20 | | Username = username; |
| 3 | 21 | | ProfilePicture = profilePicture; |
| 3 | 22 | | } |
| | 23 | | } |
| | 24 | | } |