module attachment.model; import std.datetime; struct Attachment { ulong id; SysTime uploadedAt; string filename; string contentType; ulong size; ubyte[] content; }