blob: cf52078ad856e908120d58a810b7f319be3e04cf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
open Core
type t = {
id: Snowflake.t;
filename: string;
size: int;
url: string;
proxy_url: string;
height: int [@default -1];
width: int [@default -1];
} [@@deriving sexp, yojson]
|