using System; using System.Collections.Generic; namespace Shared.Common.ResponseEntity { [Serializable] public class GatewayRes { public List PageData = new List(); public int PageIndex; public int PageSize; public int TotalCount; public int TotalPages; public bool HasPreviousPage; public bool HasNextPage; } [Serializable] public class GatewayObj { public string ZigbeeUniqueId{ get; set; } } }