user-group.ts 190 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 import { User } from '@/types/user'; export interface UserGroup { id: number; title: string; intro: string; user_id: number; status: 0 | 1; user?: User; created_at: string; }