minime/src/idz/request/loadEventInfo.ts
2019-11-06 17:28:30 -05:00

8 lines
186 B
TypeScript

import { ExtId } from "../model/base";
import { Profile } from "../model/profile";
export interface LoadEventInfoRequest {
type: "load_event_info_req";
profileId: ExtId<Profile>;
}