import { UserInfo } from "../../Users/UserTrii"; export interface IGroup { id?: string | null; spaceId?: string | null; name?: string | null; color?: string | null; description?: string | null; users: UserInfo[]; createdAt?: string | null; updatedAt?: string | null; deletedAt?: string | null; } export interface GroupInfo { id?: string | null; name?: string | null; color?: string | null; }