lss
2020-06-01 df237b08cf97c27a2526b8f523f852f298a8b9b1
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; }
    }
}