diff options
| author | Mishio595 <[email protected]> | 2018-11-25 20:30:11 -0700 |
|---|---|---|
| committer | Mishio595 <[email protected]> | 2018-11-25 20:30:11 -0700 |
| commit | ffd7237f62ff8b286a05c9256ab90c92770241a9 (patch) | |
| tree | 98aeaec02dfa0d291d69ff981f9ae17e46ba5b55 /lib/models/presence.ml | |
| parent | convert to client from client_ez (diff) | |
| download | disml-ffd7237f62ff8b286a05c9256ab90c92770241a9.tar.xz disml-ffd7237f62ff8b286a05c9256ab90c92770241a9.zip | |
More models, some dispatch rework starting
Diffstat (limited to 'lib/models/presence.ml')
| -rw-r--r-- | lib/models/presence.ml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/models/presence.ml b/lib/models/presence.ml new file mode 100644 index 0000000..7243f43 --- /dev/null +++ b/lib/models/presence.ml @@ -0,0 +1,8 @@ +type t = { + user: User.t; + roles: Role.t list; + game: Activity.t option; + guild: Guild.t; + status: string; + activities: Activity.t list; +}
\ No newline at end of file |