using System.Collections.Generic; namespace WeOnlineApp.Views.Shared.Query { public class QueryWithSelect { public QueryWithSelect(string fields, Dictionary selectDic) { Fields = fields; SelectDic = selectDic; } public string Fields { get; set; } public Dictionary SelectDic { get; set; } } }