黄学彪
2019-12-13 6cbd0936d3245fd7c433884ac9c1f5448a7cf657
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; }
    }
}