prepares a private chat
This commit is contained in:
parent
9de24782d5
commit
a789f5617c
15 changed files with 189 additions and 19 deletions
10
BookAStar/BookAStar/Model/Social/Messaging/ChatStatus.cs
Normal file
10
BookAStar/BookAStar/Model/Social/Messaging/ChatStatus.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
namespace BookAStar.Model.Workflow.Messaging
|
||||
{
|
||||
public enum ChatStatus
|
||||
{
|
||||
OnLine,
|
||||
Away,
|
||||
OffLine
|
||||
}
|
||||
}
|
||||
|
||||
15
BookAStar/BookAStar/Model/Social/PrivateMessage.cs
Normal file
15
BookAStar/BookAStar/Model/Social/PrivateMessage.cs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BookAStar.Model.Social
|
||||
{
|
||||
class PrivateMessage
|
||||
{
|
||||
public DateTime Date { get; set; }
|
||||
public string SenderId { get; set; }
|
||||
public string Message { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue