22 lines
619 B
C#
22 lines
619 B
C#
using AyCode.Entities.Messages;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AyCode.Models.Messages
|
|
{
|
|
public class EmailMessage : NoticeBase
|
|
{
|
|
public EmailMessage() { }
|
|
public string Subject { get; set; }
|
|
public string HtmlContent { get; set; }
|
|
public EmailMessage(Guid senderId, Guid receiverId, string message, string subject, string htmlContent) : base(senderId, receiverId, message )
|
|
{
|
|
Subject = subject;
|
|
HtmlContent = htmlContent;
|
|
}
|
|
}
|
|
}
|