package responses // UserSummary represents a simplified user response type UserSummary struct { ID uint `json:"id"` Username string `json:"username"` Email string `json:"email"` FirstName string `json:"first_name"` LastName string `json:"last_name"` } // UserProfileSummary represents a simplified user profile response type UserProfileSummary struct { ID uint `json:"id"` UserID uint `json:"user_id"` Bio string `json:"bio,omitempty"` ProfilePicture string `json:"profile_picture,omitempty"` PhoneNumber string `json:"phone_number,omitempty"` }