QueryWithSelect.cs 407 B

123456789101112131415161718
  1. using System.Collections.Generic;
  2. namespace WeOnlineApp.Views.Shared.Query
  3. {
  4. public class QueryWithSelect
  5. {
  6. public QueryWithSelect(string fields, Dictionary<string, string> selectDic)
  7. {
  8. Fields = fields;
  9. SelectDic = selectDic;
  10. }
  11. public string Fields { get; set; }
  12. public Dictionary<string, string> SelectDic { get; set; }
  13. }
  14. }