belegeingang-database/BelegeingangDatabase/Email.cs

23 lines
475 B
C#

namespace BelegeingangDatabase
{
public partial class Email
{
public int Id { get; set; }
public string MessageId { get; set; }
public string From { get; set; }
public string To { get; set; }
public string Subject { get; set; }
public DateTime Date { get; set; }
public string Body { get; set; }
public int Status { get; set; } = 0;
public virtual ICollection<Attachment> Attachments { get; set; } = new List<Attachment>();
}
}