18 lines
379 B
C#
18 lines
379 B
C#
using System;
|
|
|
|
namespace Massmailer.Shared.Events
|
|
{
|
|
public class MailSentEvent
|
|
{
|
|
public MailSentEvent(string recipient, DateTime timestamp)
|
|
{
|
|
this.Recipient = recipient;
|
|
this.Timestamp = timestamp;
|
|
}
|
|
|
|
public string Recipient { get; private set; }
|
|
|
|
public DateTime Timestamp { get; private set; }
|
|
}
|
|
}
|