aboutsummaryrefslogtreecommitdiff
path: root/lib/models/guild/ban_t.ml
blob: 7923b58561c74061f639cbcbedc11f0a6003b751 (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}]