namespace Json { public class JsonShowModel { public int count; public T list; public JsonShowModel(int totalCount, T t) { this.count = totalCount; this.list = t; } } }