| | 1 | | using System; |
| | 2 | |
|
| | 3 | | public class FriendRequestEntryModel : FriendEntryModel |
| | 4 | | { |
| | 5 | | public string bodyMessage; |
| | 6 | | public bool isReceived; |
| | 7 | | public DateTime timestamp; |
| | 8 | | public bool isShortcutButtonsActive; |
| | 9 | |
|
| 1 | 10 | | public FriendRequestEntryModel() |
| | 11 | | { |
| 1 | 12 | | } |
| | 13 | |
|
| | 14 | | public FriendRequestEntryModel(FriendEntryModel model, string bodyMessage, bool isReceived, DateTime timestamp, bool |
| 0 | 15 | | : base(model) |
| | 16 | | { |
| 0 | 17 | | this.bodyMessage = bodyMessage; |
| 0 | 18 | | this.isReceived = isReceived; |
| 0 | 19 | | this.timestamp = timestamp; |
| 0 | 20 | | this.isShortcutButtonsActive = isShortcutButtonsActive; |
| 0 | 21 | | } |
| | 22 | | } |