| | 1 | | using DCL.Interface; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Linq; |
| | 4 | |
|
| | 5 | | namespace DCLServices.WearablesCatalogService |
| | 6 | | { |
| | 7 | | public class WearablesWebInterfaceBridge |
| | 8 | | { |
| | 9 | | public virtual void RequestWearables(string ownedByUser, string[] wearableIds, string[] collectionIds, string co |
| 6 | 10 | | WebInterface.RequestWearables(ownedByUser, wearableIds, collectionIds, context); |
| | 11 | |
|
| | 12 | | public virtual void RequestThirdPartyWearables(string ownedByUser, string thirdPartyCollectionId, string context |
| 2 | 13 | | WebInterface.RequestThirdPartyWearables(ownedByUser, thirdPartyCollectionId, context); |
| | 14 | | } |
| | 15 | | } |