Current section

Files

Jump to
erp include dict chatMessage.hrl
Raw

include/dict/chatMessage.hrl

-ifndef(CHATMESSAGE_HRL).
-define(CHATMESSAGE_HRL, true).
-record('chatMessage', {
id = kvs:seq([],[]),
user = [] :: [] | #'Employee'{},
body = [] :: [] | binary(),
monitor = [] :: [] | list(),
proc_id = [] :: [] | list(),
sent = [] :: [] | calendar:datetime(),
options = [] :: [] | list()}).
-endif.