T をパラメータとして渡していますが、このビルド エラーが発生しています。
これが私の要件です
public JsonResult SetGridProperties(Response<T> res)
{
res.ShowFilterRow = (!res.ShowFilterRow);
return Json(true, JsonRequestBehavior.AllowGet);
}
ここに私の応答クラスがあります
public class Response<T>
{
public bool Status { get; set; }
public string Message { get; set; }
public T Data { get; set; }
public List<T> DataList { get; set; }
public MessageTypes MessageType { get; set; }
public bool ShowFilterRow { get; set; }
public bool AllowGroup { get; set; }
}
この Response クラスを動的エンティティ オブジェクトを「T」としてパラメータとして使用する方法を教えてください。