| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | |
|
| | 4 | | namespace DCL.Backpack |
| | 5 | | { |
| | 6 | | [Serializable] |
| | 7 | | public record InfoCardComponentModel |
| | 8 | | { |
| | 9 | | public string name; |
| | 10 | | public string description; |
| | 11 | | public string category; |
| | 12 | | public string rarity; |
| | 13 | | public string hiddenBy; |
| | 14 | | public bool isEquipped; |
| | 15 | | public string imageUri; |
| | 16 | | public List<string> hideList; |
| | 17 | | public List<string> removeList; |
| | 18 | | public string wearableId; |
| 43 | 19 | | public bool unEquipAllowed = true; |
| | 20 | | public bool blockVrmExport = false; |
| | 21 | | } |
| | 22 | | } |