WJC
2019-10-24 528c105b3aea0e6e00477365f16f57c1e3d7eb1c
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; }
    }
}