mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 21:50:12 +01:00
10 lines
220 B
C#
10 lines
220 B
C#
namespace WebApp.Entities
|
|
{
|
|
public class MessageActivity
|
|
{
|
|
public int Recipient { get; set; }
|
|
public int Sender { get; set; }
|
|
public DateTime RecipientLastActive { get; set; }
|
|
}
|
|
}
|