import ISummary from '@/core/models'; export interface IGuildGoodsRawResponse { id: string; name: string; sku: string; category: ISummary; description?: string; created_at: string; updated_at: string; } export interface IGuildGoodsResponse extends IGuildGoodsRawResponse {} export interface IGuildGoodRequest { name: string; sku: string; description?: string; }