< Summary

Class:DCLServices.Lambdas.NamesService.NamesResponse
Assembly:NamesService
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/DCLServices/Lambdas/NamesService/NamesResponse.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:26
Line coverage:0% (0 of 4)
Covered branches:0
Total branches:0

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/DCLServices/Lambdas/NamesService/NamesResponse.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using UnityEngine;
 4
 5namespace DCLServices.Lambdas.NamesService
 6{
 7    [Serializable]
 8    public class NamesResponse : PaginatedResponse
 9    {
 10        [Serializable]
 11        public class NameEntry
 12        {
 13            [SerializeField] private string name;
 14            [SerializeField] private string contractAddress;
 15            [SerializeField] private string price;
 16
 017            public string Name => name;
 018            public string ContractAddress => contractAddress;
 019            public string Price => price;
 20        }
 21
 22        [SerializeField] private List<NameEntry> names;
 23
 024        public IReadOnlyList<NameEntry> Names => names;
 25    }
 26}