| | 1 | | namespace DCL.Chat.Notifications |
| | 2 | | { |
| | 3 | | public class PublicChannelMessageNotificationModel |
| | 4 | | { |
| 10 | 5 | | public string MessageId { get; } |
| 13 | 6 | | public string Body { get; } |
| 10 | 7 | | public string ChannelName { get; } |
| 9 | 8 | | public string ChannelId { get; } |
| 3 | 9 | | public ulong Timestamp { get; } |
| 12 | 10 | | public string Username { get; } |
| 16 | 11 | | public bool ImTheSender { get; } |
| 6 | 12 | | public bool IsOwnPlayerMentioned { get; } |
| 6 | 13 | | public bool ShouldPlayMentionSfx { get; } |
| | 14 | |
|
| 13 | 15 | | public PublicChannelMessageNotificationModel(string messageId, string body, string channelName, |
| | 16 | | string channelId, ulong timestamp, bool imTheSender, string username, bool isOwnPlayerMentioned, |
| | 17 | | bool shouldPlayMentionSfx) |
| | 18 | | { |
| 13 | 19 | | MessageId = messageId; |
| 13 | 20 | | Body = body; |
| 13 | 21 | | ChannelName = channelName; |
| 13 | 22 | | ChannelId = channelId; |
| 13 | 23 | | Timestamp = timestamp; |
| 13 | 24 | | ImTheSender = imTheSender; |
| 13 | 25 | | Username = username; |
| 13 | 26 | | IsOwnPlayerMentioned = isOwnPlayerMentioned; |
| 13 | 27 | | ShouldPlayMentionSfx = shouldPlayMentionSfx; |
| 13 | 28 | | } |
| | 29 | | } |
| | 30 | | } |