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

13 lines
190 B
D
Raw Normal View History

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