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

18 lines
251 B
D

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;
}