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 Attachments { get; set; } = new List(); } }