14 lines
410 B
C#
14 lines
410 B
C#
namespace Marco.Pms.Model.Mail
|
|
{
|
|
public class MailLog
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid ProjectId { get; set; }
|
|
public string Body { get; set; } = string.Empty;
|
|
public string EmailId { get; set; } = string.Empty;
|
|
public DateTime TimeStamp { get; set; }
|
|
public Guid TenantId { get; set; }
|
|
public Guid? EmployeeId { get; set; }
|
|
}
|
|
}
|