aboutsummaryrefslogtreecommitdiff
path: root/lib/models/guild/ban_t.ml
blob: 2ebc91da0a5ac09b289411cc6485eb9905ff2d03 (plain) (blame)
1
2
3
4
5
6
open Core

type t = {
    reason: string option [@default None];
    user: User_t.t;
} [@@deriving sexp, yojson { strict = false; exn = true }]