2024-08-01 17:01:50 +00:00
|
|
|
module attachment.model;
|
2024-07-24 20:32:08 +00:00
|
|
|
|
2024-07-31 17:20:17 +00:00
|
|
|
import std.datetime;
|
2024-07-24 20:32:08 +00:00
|
|
|
|
2024-07-31 17:20:17 +00:00
|
|
|
struct Attachment {
|
|
|
|
ulong id;
|
|
|
|
SysTime uploadedAt;
|
|
|
|
string filename;
|
|
|
|
string contentType;
|
|
|
|
ulong size;
|
|
|
|
ubyte[] content;
|
|
|
|
}
|