Interface UserGroup

interface UserGroup {
    id: string;
    type: "user" | "group";
}

Properties

Properties

id: string
type: "user" | "group"