21 lines
700 B
C#
21 lines
700 B
C#
using System.Collections.Specialized;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using AyCode.Entities.Messages;
|
|
using AyCode.Interfaces.Entities;
|
|
using AyCode.Interfaces.TimeStampInfo;
|
|
using AyCode.Interfaces.Users;
|
|
|
|
namespace TIAM.Entities.Emails;
|
|
|
|
[Table(nameof(EmailMessage))]
|
|
public class EmailMessage : AcEmailMessage<EmailRecipient> //IEntityGuid, ITimeStampInfo, IEmailRecipientsRelation, IEmailAddress
|
|
{
|
|
public EmailMessage()
|
|
{
|
|
}
|
|
|
|
public EmailMessage(Guid id, Guid? senderId, Guid contextId, string subject, string? text, string emailAddress) : base(id, senderId, contextId, subject, text, emailAddress)
|
|
{
|
|
}
|
|
} |