or
@(Html.Kendo().Grid<*what do I put here?*>()
.Name("grid")
.DataSource(dataSource => dataSource // Configure the grid data source
.Ajax() // Specify that ajax binding is used
.Read(read => read.Action(...)
)
...more configs...
)