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