1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CoreEntity.ESEntity
- {
- public class Queryresults
- {
- /// <summary>
- ///
- /// </summary>
- public List<Entity> columns { get; set; }
- /// <summary>
- ///
- /// </summary>
- public List<List<string>> rows { get; set; }
- }
- }
|