| | 1 | | using JetBrains.Annotations; |
| | 2 | |
|
| | 3 | | namespace DCL.Chat.Notifications |
| | 4 | | { |
| | 5 | | public class FriendRequestNotificationModel |
| | 6 | | { |
| 2 | 7 | | public string UserId { get; } |
| 2 | 8 | | public string UserName { get; } |
| 2 | 9 | | public string Header { get; } |
| 2 | 10 | | public string Message { get; } |
| 0 | 11 | | public ulong Timestamp { get; } |
| 2 | 12 | | [CanBeNull] public string ProfilePicture { get; } |
| 0 | 13 | | public bool IsAccepted { get; } |
| | 14 | |
|
| 1 | 15 | | public FriendRequestNotificationModel(string UserId, string UserName, string Header, string Message, ulong Times |
| | 16 | | { |
| 1 | 17 | | this.UserId = UserId; |
| 1 | 18 | | this.UserName = UserName; |
| 1 | 19 | | this.Header = Header; |
| 1 | 20 | | this.Message = Message; |
| 1 | 21 | | this.Timestamp = Timestamp; |
| 1 | 22 | | this.ProfilePicture = ProfilePicture; |
| 1 | 23 | | this.IsAccepted = IsAccepted; |
| 1 | 24 | | } |
| | 25 | | } |
| | 26 | | } |