gxc
2019-12-30 b129359c5a0df75f63d9131e5e41d3060ac38cc3
1
2
3
4
5
6
7
8
9
10
using System;
namespace Shared.Common.ResponseEntity
{
    [System.Serializable]
    public class ResultPack
    {
        public int ResultCount { get; set; }
        public object Results { get; set; }
    }
}