| 123456789101112131415161718 |
- using System.Collections.Generic;
- namespace WePlatform.Views.Shared.Query
- {
- public class QueryWithSelect
- {
- public QueryWithSelect(string fields, Dictionary<string, string> selectDic)
- {
- Fields = fields;
- SelectDic = selectDic;
- }
- public string Fields { get; set; }
- public Dictionary<string,string> SelectDic { get; set; }
-
- }
- }
|