黄学彪
2020-07-06 f23ad1b3f9f6193f35f72104d690b21dc67d5c1f
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; }
    }
}