finnow/finnow-api/source/attachment/model.d

13 lines
190 B
D

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