| | 1 | | using MainScripts.DCL.Controllers.HUD.CharacterPreview; |
| | 2 | | using System; |
| | 3 | |
|
| | 4 | | namespace DCL.Backpack |
| | 5 | | { |
| | 6 | | [Serializable] |
| | 7 | | public record AvatarSlotComponentModel |
| | 8 | | { |
| | 9 | | public string rarity; |
| | 10 | | public string imageUri; |
| | 11 | | public string category; |
| | 12 | | public bool isHidden; |
| | 13 | | public string hiddenBy; |
| | 14 | | public bool allowsColorChange; |
| | 15 | | public string wearableId; |
| | 16 | | public string[] hidesList; |
| 13 | 17 | | public bool unEquipAllowed = true; |
| | 18 | | public PreviewCameraFocus previewCameraFocus = PreviewCameraFocus.DefaultEditing; |
| | 19 | | } |
| | 20 | | } |