コード例 #1
0
ファイル: DictController.cs プロジェクト: zanderzhg/WebApi
 public ActionResult <object> GetDictType()
 {
     return(_repository.GetDictType().Select(t => new { key = t.Key, value = t.Value }).ResponseSuccess());
 }