using System.Collections.Generic; using KitsuneCafe.UI; using UnityEngine; using UnityEngine.UIElements; public class UserProfile { public string Name { get; set; } public string Status { get; set; } public Color StatusColor { get; set; } public UserProfile(string name, string status, Color statusColor) { Name = name; Status = status; StatusColor = statusColor; } } public static class UserProfileItemBinder { public static void Bind(VisualElement root, UserProfile profile) { var nameLabel = root.Q