mobilizon.chapril.org-mobil.../js/src/types/actor/member.model.ts

13 lines
255 B
TypeScript
Raw Normal View History

import type { IActor, IGroup, IPerson } from ".";
import { MemberRole } from "../enums";
export interface IMember {
id?: string;
role: MemberRole;
parent: IGroup;
actor: IActor;
invitedBy?: IPerson;
insertedAt: string;
updatedAt: string;
}