Files
BeWoAdmin/BeWoFileExporter/FileAttachment.cs

17 lines
371 B
C#
Raw Normal View History

2021-04-07 17:08:46 +02:00
namespace BeWoFileExporter
{
public class FileAttachment
{
public long Oid { get; set; }
public string Tenant { get; set; }
public byte[] Data { get; set; }
public FileAttachment(long oid, string tenant, byte[] data)
{
Oid = oid;
Tenant = tenant;
Data = data;
}
}
}