28 lines
551 B
C#
28 lines
551 B
C#
namespace BelegeingangDatabase
|
|
{
|
|
public partial class Attachment
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int EmailMessageId { get; set; }
|
|
|
|
public string FileName { get; set; }
|
|
|
|
public string ContentType { get; set; }
|
|
|
|
public bool Erechnung { get; set; }
|
|
|
|
public string Checksum { get; set; }
|
|
|
|
public string? ContentId { get; set; }
|
|
|
|
public bool IsEmbedded { get; set; }
|
|
|
|
public int? ParentId { get; set; }
|
|
|
|
public virtual Content Content { get; set; }
|
|
|
|
public virtual Email EmailMessage { get; set; }
|
|
}
|
|
}
|