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

18 lines
251 B
D
Raw Normal View History

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